C# 클래스 Sharpcraft.User

Represents the currently logged in minecraft user.
파일 보기 프로젝트 열기: SijmenSchoon/Sharpcraft 1 사용 예제들

공개 메소드들

메소드 설명
GetName ( bool pretty = false ) : string

Gets the name of the user.

SetName ( string name ) : void

Set the name of the user.

Note that this is entirely client-side, this does not update the actual username on the minecraft servers.

SetSessionID ( string id ) : void

Set this user's session ID.

비공개 메소드들

메소드 설명
User ( string name = null, string sessionId = null )

Initialize a new instance of the User class.

All of the parameters are optional and can be set later.

메소드 상세

GetName() 공개 메소드

Gets the name of the user.
public GetName ( bool pretty = false ) : string
pretty bool true to capitalize the first letter and make the rest lowercase, false for unmodified.
리턴 string

SetName() 공개 메소드

Set the name of the user.
Note that this is entirely client-side, this does not update the actual username on the minecraft servers.
public SetName ( string name ) : void
name string The new name to set.
리턴 void

SetSessionID() 공개 메소드

Set this user's session ID.
public SetSessionID ( string id ) : void
id string The session ID to set.
리턴 void