C# Class Sharpcraft.User

Represents the currently logged in minecraft user.
Mostra file Open project: SijmenSchoon/Sharpcraft Class Usage Examples

Public Methods

Method Description
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.

Private Methods

Method Description
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.

Method Details

GetName() public method

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.
return string

SetName() public method

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.
return void

SetSessionID() public method

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