Discuss this help topic in SecureBlackbox Forum

TElPOP3Client.GetMessageID

TElPOP3Client     See also     


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


This method returns the ID of the message by its number

Declaration

[C#]
    string GetMessageID(int Index);

[VB.NET]
    Function GetMessageID(ByVal Index As Integer) As String

[Pascal]
    function GetMessageID(Index : integer) : string;

[C++]
    void GetMessageID(int32_t Index, std::string &OutResult);

[PHP]
    string GetMessageID(integer $Index)

[Java]
    String getMessageID(int Index);

Parameters

  • Index - index of the message

Description

    Call this method to retrieve the text ID of the message by its number. This method sends UIDL extension command to the server. To check whether the server supports this command, check the value of ExtUIDLSupported property.

See also:     ExtUIDLSupported     ReceiveMessageIDList    

Discuss this help topic in SecureBlackbox Forum