 | MailboxAddressTryParse Method (Byte, Int32, MailboxAddress) |
Tries to parse the given input buffer into a new
MailboxAddress instance.
Namespace:
MimeKit
Assembly:
MimeKit (in MimeKit.dll) Version: 2.1.0.0
Syntaxpublic static bool TryParse(
byte[] buffer,
int startIndex,
out MailboxAddress mailbox
)
Parameters
- buffer
- Type: SystemByte
The input buffer. - startIndex
- Type: SystemInt32
The starting index of the input buffer. - mailbox
- Type: MimeKitMailboxAddress
The parsed mailbox address.
Return Value
Type:
Booleantrue, if the address was successfully parsed,
false otherwise.
Exceptions
Remarks
Parses a single
MailboxAddress. If the address is not a mailbox address or
there is more than a single mailbox address, then parsing will fail.
See Also