ImapServerStatusEventArgsDetails Property
Gets the response body.

Namespace: MailBee.ImapMail
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public string Details { get; }

Property Value

Type: String
The string containing the rest of the status response beyond the status string and the optional response code, or a null reference (Nothing in Visual Basic) if the response is a status response or it does not have any data beyond the status code or the optional response code.
Remarks

The status responses are "OK", "NO", "BAD", "PREAUTH", "BYE". In these responses, any additional data beyond the status code or the optional response code is treated as HumanReadable text. For other responses ("FLAGS"), the rest of the response will contain information specific to this response (for instance, a set of flags for "FLAGS" response). This information is in IMAP4 format and is not directly intended to be read by humans, and will be available in Details property value.

Thus, both Details and HumanReadable properties cannot be non-null for the same response. If one of these properties is non-null, another will be null. Both properties can be null, however.

See Also