Show / Hide Table of Contents

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 Source

AvatarUrl

The URL of the user's avatar.

Declaration
public string AvatarUrl { get; }
Property Value
Type Description
System.String
| Improve this Doc View Source

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
| Improve this Doc View Source

DeveloperName

The user's display name.

Declaration
public string DeveloperName { get; }
Property Value
Type Description
System.String
| Improve this Doc View Source

DeveloperWebsite

The user's website (or empty string if not specified)

Declaration
public string DeveloperWebsite { get; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Id

The ID of the user.

Declaration
public int Id { get; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

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
| Improve this Doc View Source

LastLoggedInTimestamp

The timestamp (in seconds) of when the user was last logged in.

Declaration
public int LastLoggedInTimestamp { get; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

Name

The user's username.

Declaration
public string Name { get; }
Property Value
Type Description
System.String
| Improve this Doc View Source

SignedUp

How long ago the user signed up.

Declaration
public string SignedUp { get; }
Property Value
Type Description
System.String
| Improve this Doc View Source

SignedUpTimestamp

The timestamp (in seconds) of when the user signed up.

Declaration
public int SignedUpTimestamp { get; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

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
| Improve this Doc View Source

Type

The type of user. Can be User, Developer, Moderator, or Administrator.

Declaration
public UserType Type { get; }
Property Value
Type Description
UserType
  • Improve this Doc
  • View Source
Back to top Generated by DocFX