C# Class Microsoft.SqlServer.TDS.Info.TDSInfoToken

Environment change token "INFO"
Inheritance: TDSPacketToken
显示文件 Open project: dotnet/corefx Class Usage Examples

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

TDSInfoToken ( ) : System.IO

Default constructor

TDSInfoToken ( Stream source ) : System.IO

Inflating constructor

TDSInfoToken ( uint number ) : System.IO

Initialization constructor

TDSInfoToken ( uint number, byte state ) : System.IO

Initialization constructor

TDSInfoToken ( uint number, byte state, byte clazz ) : System.IO

Initialization constructor

TDSInfoToken ( uint number, byte state, byte clazz, string message ) : System.IO

Initialization constructor

TDSInfoToken ( uint number, byte state, byte clazz, string message, string serverName ) : System.IO

Initialization constructor

TDSInfoToken ( uint number, byte state, byte clazz, string message, string serverName, string procedureName ) : System.IO

Initialization constructor

TDSInfoToken ( uint number, byte state, byte clazz, string message, string serverName, string procedureName, uint line ) : System.IO

Initialization constructor

Method Details

Deflate() public method

Deflate the token
public Deflate ( Stream destination ) : void
destination System.IO.Stream Stream to deflate token 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

TDSInfoToken() public method

Default constructor
public TDSInfoToken ( ) : System.IO
return System.IO

TDSInfoToken() public method

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

TDSInfoToken() public method

Initialization constructor
public TDSInfoToken ( uint number ) : System.IO
number uint
return System.IO

TDSInfoToken() public method

Initialization constructor
public TDSInfoToken ( uint number, byte state ) : System.IO
number uint
state byte
return System.IO

TDSInfoToken() public method

Initialization constructor
public TDSInfoToken ( uint number, byte state, byte clazz ) : System.IO
number uint
state byte
clazz byte
return System.IO

TDSInfoToken() public method

Initialization constructor
public TDSInfoToken ( uint number, byte state, byte clazz, string message ) : System.IO
number uint
state byte
clazz byte
message string
return System.IO

TDSInfoToken() public method

Initialization constructor
public TDSInfoToken ( uint number, byte state, byte clazz, string message, string serverName ) : System.IO
number uint
state byte
clazz byte
message string
serverName string
return System.IO

TDSInfoToken() public method

Initialization constructor
public TDSInfoToken ( uint number, byte state, byte clazz, string message, string serverName, string procedureName ) : System.IO
number uint
state byte
clazz byte
message string
serverName string
procedureName string
return System.IO

TDSInfoToken() public method

Initialization constructor
public TDSInfoToken ( uint number, byte state, byte clazz, string message, string serverName, string procedureName, uint line ) : System.IO
number uint
state byte
clazz byte
message string
serverName string
procedureName string
line uint
return System.IO