C# Class SteamKit2.SteamGameCoordinator

This handler handles all game coordinator messaging.
Inheritance: ClientMsgHandler
Mostrar archivo Open project: Top-Cat/SteamBot Class Usage Examples

Public Methods

Method Description
HandleMsg ( IPacketMsg packetMsg ) : void

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

Send ( IClientGCMsg msg, uint appId ) : void

Sends a game coordinator message for a specific appid.

Private Methods

Method Description
Send ( byte data, uint appId ) : void

Method Details

HandleMsg() public method

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

Send() public method

Sends a game coordinator message for a specific appid.
public Send ( IClientGCMsg msg, uint appId ) : void
msg IClientGCMsg The GC message to send.
appId uint The app id of the game coordinator to send to.
return void