Table of Contents

Interface SaslAuthenticator.ISaslStep

Namespace
MongoDB.Driver.Core.Authentication
Assembly
MongoDB.Driver.Core.dll

Represents a SASL step.

protected interface SaslAuthenticator.ISaslStep

Properties

BytesToSendToServer

Gets the bytes to send to server.

byte[] BytesToSendToServer { get; }

Property Value

byte[]

The bytes to send to server.

IsComplete

Gets a value indicating whether this instance is complete.

bool IsComplete { get; }

Property Value

bool

true if this instance is complete; otherwise, false.

Methods

Transition(SaslConversation, byte[])

Transitions the SASL conversation to the next step.

SaslAuthenticator.ISaslStep Transition(SaslAuthenticator.SaslConversation conversation, byte[] bytesReceivedFromServer)

Parameters

conversation SaslAuthenticator.SaslConversation

The SASL conversation.

bytesReceivedFromServer byte[]

The bytes received from server.

Returns

SaslAuthenticator.ISaslStep

The next SASL step.