C# Class Microsoft.SqlServer.TDS.EndPoint.SSPI.SSPIContext

SSPI context
Inheritance: IDisposable
Afficher le fichier Open project: dotnet/corefx Class Usage Examples

Méthodes publiques

Méthode Description
ContinueClientAuthentication ( byte clientToken ) : SSPIResponse

Initialize authentication sequence for the client

ContinueServerAuthentication ( byte clientToken ) : SSPIResponse

Continue authentication sequence for the server

CreateClient ( ) : SSPIContext

Create SSPI context for client

CreateServer ( ) : SSPIContext

Create SSPI context for server

Dispose ( ) : void

Dispose

GetRemoteIdentity ( ) : IIdentity

Return identity of the party on the other end

StartClientAuthentication ( string targetMachine, uint targetPort ) : SSPIResponse

Initialize authentication sequence for the client

StartServerAuthentication ( byte clientToken ) : SSPIResponse

Initialize authentication sequence for the server

Méthodes protégées

Méthode Description
Dispose ( bool bIsDisposing ) : void

Dispose the instance

Private Methods

Méthode Description
SSPIContext ( ) : System

Default constructor

Method Details

ContinueClientAuthentication() public méthode

Initialize authentication sequence for the client
public ContinueClientAuthentication ( byte clientToken ) : SSPIResponse
clientToken byte Payload received from the server
Résultat SSPIResponse

ContinueServerAuthentication() public méthode

Continue authentication sequence for the server
public ContinueServerAuthentication ( byte clientToken ) : SSPIResponse
clientToken byte Token received from the client
Résultat SSPIResponse

CreateClient() public static méthode

Create SSPI context for client
public static CreateClient ( ) : SSPIContext
Résultat SSPIContext

CreateServer() public static méthode

Create SSPI context for server
public static CreateServer ( ) : SSPIContext
Résultat SSPIContext

Dispose() public méthode

Dispose
public Dispose ( ) : void
Résultat void

Dispose() protected méthode

Dispose the instance
protected Dispose ( bool bIsDisposing ) : void
bIsDisposing bool
Résultat void

GetRemoteIdentity() public méthode

Return identity of the party on the other end
public GetRemoteIdentity ( ) : IIdentity
Résultat IIdentity

StartClientAuthentication() public méthode

Initialize authentication sequence for the client
public StartClientAuthentication ( string targetMachine, uint targetPort ) : SSPIResponse
targetMachine string
targetPort uint
Résultat SSPIResponse

StartServerAuthentication() public méthode

Initialize authentication sequence for the server
public StartServerAuthentication ( byte clientToken ) : SSPIResponse
clientToken byte Token received from the client
Résultat SSPIResponse