Getting the message count |
Upon establishing a connection to a POP server you can retrieve a count of messages in the account mailbox by invoking the GetMessageCount method.
Example
[C#] int count = myPop.GetMessageCount();
[Visual Basic] Dim count As Int32 = myPop.GetMessageCount()
|