C# 클래스 SteamKit2.Connection

파일 보기 프로젝트 열기: Top-Cat/SteamBot 1 사용 예제들

공개 메소드들

메소드 설명
Connect ( IPEndPoint endPoint ) : void

Connects to the specified end point.

Disconnect ( ) : void

Disconnects this instance.

GetLocalIP ( ) : IPAddress

Gets the local IP.

Send ( IClientMsg clientMsg ) : void

Sends the specified client net message.

보호된 메소드들

메소드 설명
OnConnected ( EventArgs e ) : void
OnDisconnected ( EventArgs e ) : void
OnNetMsgReceived ( NetMsgEventArgs e ) : void

Raises the E:NetMsgReceived event.

메소드 상세

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

Connects to the specified end point.
public abstract Connect ( IPEndPoint endPoint ) : void
endPoint System.Net.IPEndPoint The end point.
리턴 void

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

Disconnects this instance.
public abstract Disconnect ( ) : void
리턴 void

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

Gets the local IP.
public abstract GetLocalIP ( ) : IPAddress
리턴 System.Net.IPAddress

OnConnected() 보호된 메소드

protected OnConnected ( EventArgs e ) : void
e System.EventArgs
리턴 void

OnDisconnected() 보호된 메소드

protected OnDisconnected ( EventArgs e ) : void
e System.EventArgs
리턴 void

OnNetMsgReceived() 보호된 메소드

Raises the E:NetMsgReceived event.
protected OnNetMsgReceived ( NetMsgEventArgs e ) : void
e NetMsgEventArgs The instance containing the event data.
리턴 void

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

Sends the specified client net message.
public abstract Send ( IClientMsg clientMsg ) : void
clientMsg IClientMsg The client net message.
리턴 void