Click or drag to resize
MimeKit

AuthenticationResultsTryParse(Byte, AuthenticationResults) Method

Try to parse the given input buffer into a new AuthenticationResults instance.

Namespace: MimeKit.Cryptography
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
public static bool TryParse(
	byte[] buffer,
	out AuthenticationResults authres
)

Parameters

buffer  Byte
The input buffer.
authres  AuthenticationResults
The parsed authentication results.

Return Value

Boolean
true if the authentication results were successfully parsed; otherwise, false.
Exceptions
ExceptionCondition
ArgumentNullExceptionbuffer is null.
Remarks
Parses an Authentication-Results header value from the supplied buffer.
See Also