SaslMethodExpectBase64Challenge Property
Gets or sets the status of whether Base64-encoded data is expected in the pending response from the server.

Namespace: MailBee
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public bool ExpectBase64Challenge { get; set; }

Property Value

Type: Boolean
The boolean status of whether Base64-encoded data is expected in the pending response from the server. The default value is true.
Remarks
The developer should set this property to false (usually in the derived class constructor) if the server returns non-base64 data in the first challenge, and then set it back to true in overridden CreateNextClientAnswer method. This is required when implementing a method such as NTLM.
See Also