C# Класс Sharpcraft.User

Represents the currently logged in minecraft user.
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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