FolderStatus Class
Provides properties used to examine the status of a single folder of the mail account.
Inheritance Hierarchy
SystemObject
  MailBee.ImapMailFolderStatus

Namespace: MailBee.ImapMail
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public class FolderStatus

The FolderStatus type exposes the following members.

Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Properties
  NameDescription
Public propertyFolderName
Gets the full name of the folder including parent folder names if any.
Public propertyIsValid
Gets if the server response containing the folder status information has been successfully parsed.
Public propertyMessageCount
Gets the number of messages in the folder.
Public propertyRawFolderName
Gets the full name of the folder as was returned by the server including parent folder names if any.
Public propertyRecentCount
Gets the number of recent messages in the folder.
Public propertyUidNext
Gets the next UID value to be assigned to a new message.
Public propertyUidValidity
Gets the UID validity value of the folder.
Public propertyUnseenCount
Gets the number of unseen messages in the folder.
Top
Remarks
To obtain the status of a particular folder, the developer can call GetFolderStatus(String) method.
Note Note
GetFolderStatus(String) method obtains the status information about the requested folder without selecting it. The currently selected folder (if any) remains selected after calling this method.
See Also