Discuss this help topic in SecureBlackbox Forum

TElPOP3Client.GetMailboxInfo

TElPOP3Client     See also     


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


This method returns information about mailbox state.

Declaration

[C#]
    void GetMailboxInfo(out int Messages, out long TotalSize);

[VB.NET]
    Sub GetMailboxInfo(Out Messages As Integer, Out TotalSize As Long)

[Pascal]
    procedure GetMailboxInfo(out Messages : integer; out TotalSize : Integer);

[C++]
    void GetMailboxInfo(int32_t &Messages, int64_t &TotalSize);

[PHP]
    void GetMailboxInfo(integer &$Messages, integer &$TotalSize)

[Java]
    void getMailboxInfo(TElPOP3MailboxInfo MailboxInfo);

Parameters

  • Messages - on return contains the number of messages in the mailbox
  • TotalSize - on return contains total size of all messages in the mailbox
  • MailboxInfo -

Description

    Call this method to obtain information about the state of the mailbox (number and total size of messages). Information can be obtained after successful Login method.

See also:     GetMailboxSize     GetMessageCount     Login    

Discuss this help topic in SecureBlackbox Forum