Discuss this help topic in SecureBlackbox Forum

TElMessagePart.ContentDescription

TElMessagePart     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Specifies contents of "Content-Description" header field.

Declaration

[C#]
    string ContentDescription;

[VB.NET]
    Property ContentDescription As String

[Pascal]
    property ContentDescription : TString;
    procedure SetContentDescription(const ContentDescription: TString; ClearParams: Boolean = False);

[C++]
    void get_ContentDescription(sb_u16string &OutResult);
    void get_ContentDescription(std::wstring &OutResult);

[PHP]
    string get_ContentDescription()

[Java]
    String getContentDescription();
    void setContentDescription(String AValue, boolean ClearParams);

Parameters

  • ContentDescription - description of the contents.
  • ClearParams - determines if previously set field parameters are deleted.
    Default value - False.

Description

    This header field is optional but ability to associate some descriptive information with a given body is often desirable. For example you can specify title of the image using this property.
     Note, this property is read-only. Use SetContentDescription method to set its value.

See also:     ContentID    

Discuss this help topic in SecureBlackbox Forum