SaslMethodExpectBase64Challenge Property |
Gets or sets the status of whether Base64-encoded data is expected in the pending
response from the server.
Namespace: MailBeeAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax public bool ExpectBase64Challenge { get; set; }
Public Property ExpectBase64Challenge As Boolean
Get
Set
Property Value
Type:
BooleanThe 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