Discuss this help topic in SecureBlackbox Forum

TElMessageHeaderField.Body

TElMessageHeaderField     See also     


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


Contains the whole body of the header field.

Declaration

[C#]
    string Body;

[VB.NET]
    Property Body As String

[Pascal]
    property Body : TString;

[C++]
    void get_Body(sb_u16string &OutResult);
    void get_Body(std::wstring &OutResult);
    void set_Body(const sb_u16string &Value);
    void set_Body(const std::wstring &Value);

[PHP]
    string get_Body()
    void set_Body(string $Value)

[Java]
    String getBody();
    void setBody(String Value);

Description

    This property contains the whole body of the header field. Body can include value, parameters and comments. If you need to manipulate only Value or Comments of the field, use corresponding properties.

See also:     Value     Comments     Name    

Discuss this help topic in SecureBlackbox Forum