C# 클래스 SteamKit2.SteamUser

This handler handles all user log on/log off related actions and callbacks.
상속: ClientMsgHandler
파일 보기 프로젝트 열기: Top-Cat/SteamBot 1 사용 예제들

공개 메소드들

메소드 설명
HandleMsg ( IPacketMsg packetMsg ) : void

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

LogOff ( ) : void

Logs the user off of the Steam3 network. This method does not disconnect the client. Results are returned in a LoggedOffCallback.

LogOn ( LogOnDetails details ) : void

Logs the client into the Steam3 network. The client should already have been connected at this point. Results are returned in a LoggedOnCallback.

LogOnAnonymous ( ) : void

Logs the client into the Steam3 network as an anonymous user. The client should already have been connected at this point. Results are returned in a LoggedOnCallback.

SendMachineAuthResponse ( MachineAuthDetails details ) : void

Sends a machine auth response. This should normally be used in response to a UpdateMachineAuthCallback.

비공개 메소드들

메소드 설명
HandleAccountInfo ( IPacketMsg packetMsg ) : void
HandleLogOnResponse ( IPacketMsg packetMsg ) : void
HandleLoggedOff ( IPacketMsg packetMsg ) : void
HandleLoginKey ( IPacketMsg packetMsg ) : void
HandleSessionToken ( IPacketMsg packetMsg ) : void
HandleUpdateMachineAuth ( IPacketMsg packetMsg ) : void
HandleWalletInfo ( IPacketMsg packetMsg ) : void
SteamUser ( ) : System

메소드 상세

HandleMsg() 공개 메소드

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

LogOff() 공개 메소드

Logs the user off of the Steam3 network. This method does not disconnect the client. Results are returned in a LoggedOffCallback.
public LogOff ( ) : void
리턴 void

LogOn() 공개 메소드

Logs the client into the Steam3 network. The client should already have been connected at this point. Results are returned in a LoggedOnCallback.
No logon details were provided. Username or password are not set within .
public LogOn ( LogOnDetails details ) : void
details LogOnDetails The details to use for logging on.
리턴 void

LogOnAnonymous() 공개 메소드

Logs the client into the Steam3 network as an anonymous user. The client should already have been connected at this point. Results are returned in a LoggedOnCallback.
public LogOnAnonymous ( ) : void
리턴 void

SendMachineAuthResponse() 공개 메소드

Sends a machine auth response. This should normally be used in response to a UpdateMachineAuthCallback.
public SendMachineAuthResponse ( MachineAuthDetails details ) : void
details MachineAuthDetails The details pertaining to the response.
리턴 void