C# Class SteamKit2.ClientMsgHandler

This class implements the base requirements every message handler should inherit from.
Exibir arquivo Open project: Top-Cat/SteamBot Class Usage Examples

Public Methods

Method Description
ClientMsgHandler ( )

Initializes a new instance of the ClientMsgHandler class.

HandleMsg ( IPacketMsg packetMsg ) : void

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

Private Methods

Method Description
Setup ( SteamClient client ) : void

Method Details

ClientMsgHandler() public method

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

HandleMsg() public abstract method

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.
return void