 | InternetAddressListTryParse Method (ParserOptions, Byte, Int32, Int32, InternetAddressList) |
Namespace:
MimeKit
Assembly:
MimeKit (in MimeKit.dll) Version: 2.1.0.0
Syntaxpublic static bool TryParse(
ParserOptions options,
byte[] buffer,
int startIndex,
int length,
out InternetAddressList addresses
)
Parameters
- options
- Type: MimeKitParserOptions
The parser options to use. - buffer
- Type: SystemByte
The input buffer. - startIndex
- Type: SystemInt32
The starting index of the input buffer. - length
- Type: SystemInt32
The number of bytes in the input buffer to parse. - addresses
- Type: MimeKitInternetAddressList
The parsed addresses.
Return Value
Type:
Booleantrue, if the address list was successfully parsed,
false otherwise.
Exceptions
Remarks
Parses a list of addresses from the supplied buffer starting at the given index
and spanning across the specified number of bytes.
See Also