C# Class Descent.Messaging.Connection.Connection

Abstraction of a connection. Can send text messages.
Show file Open project: nezbo/Descent

Public Methods

Method Description
Close ( ) : void

Close the socket connection.

SendString ( string message ) : void

Send a text string.

Start ( ) : void

Initiate connection and start receiving data.

Method Details

Close() public abstract method

Close the socket connection.
public abstract Close ( ) : void
return void

SendString() public abstract method

Send a text string.
public abstract SendString ( string message ) : void
message string String to send.
return void

Start() public abstract method

Initiate connection and start receiving data.
public abstract Start ( ) : void
return void