C# Класс GameJoltAPI.User

DEPRICATED. Use GameJoltAPI.Users.User instead.

Class representing the User API callback information.

See: http://gamejolt.com/api/doc/game/users/fetch/ for further information.

@author Christian "HyperGod" Bosence

@version 0.1.0.0

Показать файл Открыть проект

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

Метод Описание
User ( int ID, UserType type = null, string username = null, string avatar_url = null, string signed_up = null, string last_logged_in = null, UserStatus status = null, string developerName = null, string developerWebsite = null, string developerDescription = null ) : System

Creates a new GameJoltAPI user instance. Represents the callback information.

Описание методов

User() публичный Метод

Creates a new GameJoltAPI user instance. Represents the callback information.
public User ( int ID, UserType type = null, string username = null, string avatar_url = null, string signed_up = null, string last_logged_in = null, UserStatus status = null, string developerName = null, string developerWebsite = null, string developerDescription = null ) : System
ID int The ID of the user.
type UserType Can be "User", "Developer", "Moderator", or "Administrator". Uses UserType enum.
username string The user's username.
avatar_url string The URL of the user's avatar.
signed_up string How long ago the user signed up.
last_logged_in string How long ago the user was last logged in. Will be "Online Now" if the user is currently online.
status UserStatus "Active" if the user is still a member on the site. "Banned" if they've been banned. Uses UserStatus enum.
developerName string The developer's name.
developerWebsite string The developer's website, if they put one in.
developerDescription string The description that the developer put in for themselves. HTML tags and new lines have been removed.
Результат System