C# 클래스 SteamDroidServer.Steam.Steam3

Steam client, handles the connection with the Steam network
파일 보기 프로젝트 열기: FlyingPie/SteamDroid 1 사용 예제들

공개 메소드들

메소드 설명
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

비공개 메소드들

메소드 설명
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

메소드 상세

AddHandler() 공개 메소드

Adds a handler
public AddHandler ( ICallbackHandler handler ) : void
handler ICallbackHandler The handler to add
리턴 void

Authorize() 공개 메소드

Authorizes against an open connection using the specified username and password
public Authorize ( String username, String password ) : bool
username String The username to use
password String The password to use
리턴 bool

Connect() 공개 메소드

Connects using the specified authcode
public Connect ( String authcode ) : void
authcode String The authcode to use
리턴 void

Connect() 공개 메소드

Connects using the specified username and password
public Connect ( String username, String password ) : void
username String
password String
리턴 void

Connect() 공개 메소드

Connects using the specified username, password and authcode
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
리턴 void

Disconnect() 공개 메소드

Disconnects from the Steam network
public Disconnect ( ) : void
리턴 void

RemoveHandler() 공개 메소드

Removes a handler
public RemoveHandler ( ICallbackHandler handler ) : void
handler ICallbackHandler The handler to remove
리턴 void

Steam3() 공개 메소드

public Steam3 ( ) : System
리턴 System

Update() 공개 메소드

Updates the Steam client and passes any pending callbacks
public Update ( ) : void
리턴 void