C# Class Microsoft.SqlServer.TDS.Error.TDSErrorToken

Environment change token "ERROR"
Inheritance: TDSPacketToken
Datei anzeigen 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

TDSErrorToken ( ) : System.IO

Default constructor

TDSErrorToken ( Stream source ) : System.IO

Inflating constructor

TDSErrorToken ( uint number ) : System.IO

Initialization constructor

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

Initialization constructor

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

Initialization constructor

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

Initialization constructor

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

Initialization constructor

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

Initialization constructor

TDSErrorToken ( 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

TDSErrorToken() public method

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

TDSErrorToken() public method

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

TDSErrorToken() public method

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

TDSErrorToken() public method

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

TDSErrorToken() public method

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

TDSErrorToken() public method

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

TDSErrorToken() public method

Initialization constructor
public TDSErrorToken ( 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

TDSErrorToken() public method

Initialization constructor
public TDSErrorToken ( 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

TDSErrorToken() public method

Initialization constructor
public TDSErrorToken ( 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