C# Class Microsoft.SqlServer.TDS.EndPoint.TDSClientParser

Parser of the TDS packets on the client
Inheritance: TDSParser
Mostrar archivo Open project: dotnet/corefx Class Usage Examples

Private Properties

Property Type Description
_ReadResponse TDSMessage
_WriteRequest void

Public Methods

Method Description
Login ( ) : void

Authenticate against TDS Server

Logout ( ) : void

Complete

SendRequest ( ) : void

Dispatch a request to the server and process the response

TDSClientParser ( ITDSClient client, Stream transport ) : System.IO

Client TDS parser initialization constructor

Private Methods

Method Description
_ReadResponse ( ) : TDSMessage

Read data from TDS server

_WriteRequest ( TDSMessage requestMessage ) : void

Send a request to the TDS server

Method Details

Login() public method

Authenticate against TDS Server
public Login ( ) : void
return void

Logout() public method

Complete
public Logout ( ) : void
return void

SendRequest() public method

Dispatch a request to the server and process the response
public SendRequest ( ) : void
return void

TDSClientParser() public method

Client TDS parser initialization constructor
public TDSClientParser ( ITDSClient client, Stream transport ) : System.IO
client ITDSClient
transport System.IO.Stream
return System.IO