Method | Description | |
---|---|---|
AddHandler ( ICallbackHandler handler ) : void |
Adds a handler
|
|
Authorize ( String username, String password ) : bool |
Authorizes against an open connection using the specified username and password
|
|
Connect ( String authcode ) : void |
Connects using the specified authcode
|
|
Connect ( String username, String password ) : void |
Connects using the specified username and password
|
|
Connect ( String username, String password, String authcode ) : void |
Connects using the specified username, password and authcode
|
|
Disconnect ( ) : void |
Disconnects from the Steam network
|
|
RemoveHandler ( ICallbackHandler handler ) : void |
Removes a handler
|
|
Steam3 ( ) : System | ||
Update ( ) : void |
Updates the Steam client and passes any pending callbacks
|
Method | Description | |
---|---|---|
Initialize ( ) : void |
Initializes the Steam client
|
|
Push ( SteamKit2.CallbackMsg msg ) : void |
Pushes a callback to registered handlers
|
|
SteamThread ( ) : void |
Updates the Steam client while connected
|
public AddHandler ( ICallbackHandler handler ) : void | ||
handler | ICallbackHandler | The handler to add |
return | void |
public Authorize ( String username, String password ) : bool | ||
username | String | The username to use |
password | String | The password to use |
return | bool |
public Connect ( String authcode ) : void | ||
authcode | String | The authcode to use |
return | void |
public Connect ( String username, String password ) : void | ||
username | String | |
password | String | |
return | void |
public Connect ( String username, String password, String authcode ) : void | ||
username | String | The username to use |
password | String | The password to use |
authcode | String | The authcode to use |
return | void |
public RemoveHandler ( ICallbackHandler handler ) : void | ||
handler | ICallbackHandler | The handler to remove |
return | void |