C# Class SteamKit2.ClientMsgHandler

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

Méthodes publiques

Méthode 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

Méthode Description
Setup ( SteamClient client ) : void

Method Details

ClientMsgHandler() public méthode

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

HandleMsg() public abstract méthode

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.
Résultat void