Method | Description | |
---|---|---|
CanonicalizeMailboxName ( string mailboxName, char directorySeparator ) : string |
Canonicalize the name of the mailbox. Canonicalizes the name of the mailbox by replacing various capitalizations of "INBOX" with the literal "INBOX" string. |
|
FormatFlagsList ( MessageFlags flags, int numUserFlags ) : string |
Formats a flags list suitable for use with the APPEND command.
|
|
FormatIndexSet ( IList |
Formats the array of indexes as a string suitable for use with IMAP commands.
|
|
FormatInternalDate ( DateTimeOffset date ) : string |
Formats a date in a format suitable for use with the APPEND command.
|
|
FormatUidSet ( IList |
Formats the array of UIDs as a string suitable for use with IMAP commands.
|
|
IsInbox ( string mailboxName ) : bool |
Determines whether the specified mailbox is the Inbox.
|
|
ParseBody ( MailKit.Net.Imap.ImapEngine engine, string format, string path, |
||
ParseEnvelope ( MailKit.Net.Imap.ImapEngine engine, |
Parses the ENVELOPE parenthesized list.
|
|
ParseFlagsList ( ImapEngine engine, string name, HashSet |
Parses the flags list.
|
|
ParseFolderList ( ImapEngine engine, ImapCommand ic, int index ) : void |
Parses an untagged LIST or LSUB response.
|
|
ParseImplementation ( ImapEngine engine, ImapCommand ic, int index ) : void |
Parses an untagged ID response.
|
|
ParseInternalDate ( string text ) : DateTimeOffset |
Parses the internal date string.
|
|
ParseLabelsList ( ImapEngine engine, CancellationToken cancellationToken ) : ReadOnlyCollection |
Parses the X-GM-LABELS list.
|
|
ParseMetadata ( ImapEngine engine, ImapCommand ic, int index ) : void |
Parses an untagged METADATA response.
|
|
ParseThreads ( ImapEngine engine, uint uidValidity, CancellationToken cancellationToken ) : IList |
Parses the threads.
|
Method | Description | |
---|---|---|
InvalidInternalDateFormat ( string text ) : |
||
NeedsQuoting ( string value ) : bool | ||
ParseContentDisposition ( MailKit.Net.Imap.ImapEngine engine, string format, |
||
ParseContentLanguage ( MailKit.Net.Imap.ImapEngine engine, string format, |
||
ParseContentLocation ( MailKit.Net.Imap.ImapEngine engine, string format, |
||
ParseContentType ( MailKit.Net.Imap.ImapEngine engine, string format, |
||
ParseEnvelopeAddress ( ImapEngine engine, string format, CancellationToken cancellationToken ) : EnvelopeAddress | ||
ParseEnvelopeAddressList ( InternetAddressList list, ImapEngine engine, string format, CancellationToken cancellationToken ) : void | ||
ParseEnvelopeDate ( ImapEngine engine, string format, CancellationToken cancellationToken ) : DateTimeOffset? | ||
ParseMultipart ( ImapEngine engine, string format, string path, string subtype, CancellationToken cancellationToken ) : BodyPart | ||
ParseParameterList ( StringBuilder builder, ImapEngine engine, string format, CancellationToken cancellationToken ) : void | ||
ParseThread ( ImapEngine engine, uint uidValidity, CancellationToken cancellationToken ) : MessageThread | ||
ReadNStringToken ( ImapEngine engine, string format, bool rfc2047, CancellationToken cancellationToken ) : string | ||
ReadNumber ( ImapEngine engine, string format, CancellationToken cancellationToken ) : uint | ||
ReadStringToken ( ImapEngine engine, string format, CancellationToken cancellationToken ) : string | ||
SkipBodyExtensions ( ImapEngine engine, string format, CancellationToken cancellationToken ) : void | ||
TryGetInt32 ( string text, int &index, char delim, int &value ) : bool | ||
TryGetInt32 ( string text, int &index, int &value ) : bool | ||
TryGetMonth ( string text, int &index, char delim, int &month ) : bool | ||
TryGetTimeZone ( string text, int &index, TimeSpan &timezone ) : bool |
public static CanonicalizeMailboxName ( string mailboxName, char directorySeparator ) : string | ||
mailboxName | string | The encoded mailbox name. |
directorySeparator | char | The directory separator. |
return | string |
public static FormatFlagsList ( MessageFlags flags, int numUserFlags ) : string | ||
flags | MessageFlags | The message flags. |
numUserFlags | int | The number of user-defined flags. |
return | string |
public static FormatIndexSet ( IList |
||
indexes | IList |
The indexes. |
return | string |
public static FormatInternalDate ( DateTimeOffset date ) : string | ||
date | DateTimeOffset | The date. |
return | string |
public static FormatUidSet ( IList |
||
uids | IList |
The UIDs. |
return | string |
public static IsInbox ( string mailboxName ) : bool | ||
mailboxName | string | The mailbox name. |
return | bool |
public static ParseBody ( MailKit.Net.Imap.ImapEngine engine, string format, string path, |
||
engine | MailKit.Net.Imap.ImapEngine | |
format | string | |
path | string | |
cancellationToken | ||
return | BodyPart |
public static ParseEnvelope ( MailKit.Net.Imap.ImapEngine engine, |
||
engine | MailKit.Net.Imap.ImapEngine | The IMAP engine. |
cancellationToken | The cancellation token. | |
return | Envelope |
public static ParseFlagsList ( ImapEngine engine, string name, HashSet |
||
engine | ImapEngine | The IMAP engine. |
name | string | The name of the flags being parsed. |
userFlags | HashSet |
A hash set of user-defined message flags that will be populated if non-null. |
cancellationToken | CancellationToken | The cancellation token. |
return | MessageFlags |
public static ParseFolderList ( ImapEngine engine, ImapCommand ic, int index ) : void | ||
engine | ImapEngine | The IMAP engine. |
ic | ImapCommand | The IMAP command. |
index | int | The index. |
return | void |
public static ParseImplementation ( ImapEngine engine, ImapCommand ic, int index ) : void | ||
engine | ImapEngine | The IMAP engine. |
ic | ImapCommand | The IMAP command. |
index | int | The index. |
return | void |
public static ParseInternalDate ( string text ) : DateTimeOffset | ||
text | string | The text to parse. |
return | DateTimeOffset |
public static ParseLabelsList ( ImapEngine engine, CancellationToken cancellationToken ) : ReadOnlyCollection |
||
engine | ImapEngine | The IMAP engine. |
cancellationToken | CancellationToken | The cancellation token. |
return | ReadOnlyCollection |
public static ParseMetadata ( ImapEngine engine, ImapCommand ic, int index ) : void | ||
engine | ImapEngine | The IMAP engine. |
ic | ImapCommand | The IMAP command. |
index | int | The index. |
return | void |
public static ParseThreads ( ImapEngine engine, uint uidValidity, CancellationToken cancellationToken ) : IList |
||
engine | ImapEngine | The IMAP engine. |
uidValidity | uint | The UIDVALIDITY of the folder. |
cancellationToken | CancellationToken | The cancellation token. |
return | IList |