Class User
Provides all informations on a certain user.
Inheritance
System.Object
User
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: GameJolt.Objects
Assembly: GameJolt.dll
Syntax
public sealed class User
Properties
| Improve this Doc View SourceAvatarUrl
The URL of the user's avatar.
Declaration
public string AvatarUrl { get; }
Property Value
Type | Description |
---|---|
System.String |
DeveloperDescription
The user's profile description. HTML tags and line breaks will be removed.
Declaration
public string DeveloperDescription { get; }
Property Value
Type | Description |
---|---|
System.String |
DeveloperName
The user's display name.
Declaration
public string DeveloperName { get; }
Property Value
Type | Description |
---|---|
System.String |
DeveloperWebsite
The user's website (or empty string if not specified)
Declaration
public string DeveloperWebsite { get; }
Property Value
Type | Description |
---|---|
System.String |
Id
The ID of the user.
Declaration
public int Id { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
LastLoggedIn
How long ago the user was last logged in. Will be Online Now if the user is currently online.
Declaration
public string LastLoggedIn { get; }
Property Value
Type | Description |
---|---|
System.String |
LastLoggedInTimestamp
The timestamp (in seconds) of when the user was last logged in.
Declaration
public int LastLoggedInTimestamp { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Name
The user's username.
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
System.String |
SignedUp
How long ago the user signed up.
Declaration
public string SignedUp { get; }
Property Value
Type | Description |
---|---|
System.String |
SignedUpTimestamp
The timestamp (in seconds) of when the user signed up.
Declaration
public int SignedUpTimestamp { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Status
Active if the user is still a member of the site. Banned if they've been banned.
Declaration
public UserStatus Status { get; }
Property Value
Type | Description |
---|---|
UserStatus |
Type
The type of user. Can be User, Developer, Moderator, or Administrator.
Declaration
public UserType Type { get; }
Property Value
Type | Description |
---|---|
UserType |