C# 클래스 SteamKit2.ClientMsgHandler

This class implements the base requirements every message handler should inherit from.
파일 보기 프로젝트 열기: Top-Cat/SteamBot 1 사용 예제들

공개 메소드들

메소드 설명
ClientMsgHandler ( )

Initializes a new instance of the ClientMsgHandler class.

HandleMsg ( IPacketMsg packetMsg ) : void

Handles a client message. This should not be called directly.

비공개 메소드들

메소드 설명
Setup ( SteamClient client ) : void

메소드 상세

ClientMsgHandler() 공개 메소드

Initializes a new instance of the ClientMsgHandler class.
public ClientMsgHandler ( )

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

Handles a client message. This should not be called directly.
public abstract HandleMsg ( IPacketMsg packetMsg ) : void
packetMsg IPacketMsg The packet message that contains the data.
리턴 void