C# 클래스 Descent.Messaging.Connection.Connection

Abstraction of a connection. Can send text messages.
파일 보기 프로젝트 열기: nezbo/Descent

공개 메소드들

메소드 설명
Close ( ) : void

Close the socket connection.

SendString ( string message ) : void

Send a text string.

Start ( ) : void

Initiate connection and start receiving data.

메소드 상세

Close() 공개 추상적인 메소드

Close the socket connection.
public abstract Close ( ) : void
리턴 void

SendString() 공개 추상적인 메소드

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

Start() 공개 추상적인 메소드

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