C# Class Microsoft.SqlServer.TDS.Authentication.TDSFedAuthToken

FedAuthToken Message definition.
Inheritance: TDSPacketToken
Mostrar archivo Open project: dotnet/corefx

Public Methods

Method Description
Deflate ( Stream destination ) : void

Deflate the token.

Inflate ( Stream source ) : bool

Inflate the token NOTE: This operation is not continuable and assumes that the entire token is available in the stream

TDSFedAuthToken ( ) : System.IO

Default Constructor.

TDSFedAuthToken ( Stream source ) : System.IO

Inflating constructor.

TDSFedAuthToken ( byte token, byte nonce ) : System.IO

Initialization constructor.

Method Details

Deflate() public method

Deflate the token.
public Deflate ( Stream destination ) : void
destination System.IO.Stream Stream the token to deflate to.
return void

Inflate() public method

Inflate the token NOTE: This operation is not continuable and assumes that the entire token is available in the stream
public Inflate ( Stream source ) : bool
source System.IO.Stream Stream to inflate the token from.
return bool

TDSFedAuthToken() public method

Default Constructor.
public TDSFedAuthToken ( ) : System.IO
return System.IO

TDSFedAuthToken() public method

Inflating constructor.
public TDSFedAuthToken ( Stream source ) : System.IO
source System.IO.Stream
return System.IO

TDSFedAuthToken() public method

Initialization constructor.
public TDSFedAuthToken ( byte token, byte nonce ) : System.IO
token byte Token
nonce byte
return System.IO