C# Класс Sharpcraft.Networking.LoginResult

Login result returned by Authenticator.Login method, can be used to determine if login was successful and display the error message if it was not.
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
RealName string
Result string
SessionID string
Success bool

Приватные методы

Метод Описание
LoginResult ( bool success, string result, string realName = null, string sessionId = null ) : System.IO

Initializes a new instance of the LoginResult struct.

Описание свойств

RealName публичное свойство

The user's real username.
public string RealName
Результат string

Result публичное свойство

The result of the login, this will contain an error message if it was unsuccessful.
public string Result
Результат string

SessionID публичное свойство

The session ID associated with this login.
public string SessionID
Результат string

Success публичное свойство

Whether or not the login succeeded.
public bool Success
Результат bool