Discuss this help topic in SecureBlackbox Forum

TElPOP3Client.GetMessageIDList

TElPOP3Client     See also     


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


This method returns IDs of all messages

Declaration

[C#]
    void GetMessageIDList(ref TSBPOP3MessageID[] List);
    TSBPOP3MessageID[] GetMessageIDList();

[VB.NET]
    Sub GetMessageIDList(ByRef List As TSBPOP3MessageID[])
    Function GetMessageIDList() As TSBPOP3MessageID[]

[Pascal]
    function GetMessageIDList() : string;

[C++]
    void GetMessageIDList(std::vector<TSBPOP3MessageID> &OutResult);

[PHP]
    not available

[Java]
    void getMessageIDList(TElPOP3MessageIDListRef List);
    TSBPOP3MessageID[] getMessageIDList();

Parameters

  • List -

Description

    Call this method to retrieve numbers and text IDs of all messages in the mailbox. This method sends UIDL extension command to the server. To check whether the server supports this command, check the value of ExtUIDLSupported property.

    This method returns an array of entries, where each entry has a message number and its corresponding ID.

See also:     ExtUIDLSupported     GetMessageID    

Discuss this help topic in SecureBlackbox Forum