Discuss this help topic in SecureBlackbox Forum

TElMessage.InReplyTo

TElMessage     See also     


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


Specifies contents of "In-Reply-To:" header field.

Declaration

[C#]
    string InReplyTo;

[VB.NET]
    Property InReplyTo As String

[Pascal]
    property InReplyTo : TString;
    function SetInReplyTo(const InReplyTo: TString): TElMessageHeaderField;

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

[PHP]
    string get_InReplyTo()

[Java]
    String getInReplyTo();
    TElMessageHeaderField setInReplyTo(String AInReplyTo);

Parameters

  • InReplyTo - message identifier of the original message.
  • AInReplyTo -

Description

    Reply message should have "In-Reply-To:" header field, which may be used to identify the message (or messages) to which the new message is a reply.
     Note, this property is read-only. Use SetInReplyTo method to set its value.

See also:     References     MessageID    

Discuss this help topic in SecureBlackbox Forum