Class RestSelfUser
Represents the logged-in REST-based user.
Implements
Inherited Members
Namespace: Discord.Rest
Assembly: Discord.Net.Rest.dll
Syntax
public class RestSelfUser : RestUser, IUpdateable, ISelfUser, IUser, ISnowflakeEntity, IEntity<ulong>, IMentionable, IPresence
Properties
| Improve this Doc View SourceGets the email associated with this user.
Declaration
public string Email { get; }
Property Value
| Type | Description |
|---|---|
| System.String |
Flags
Gets the flags that are applied to a user's account.
Declaration
public UserProperties Flags { get; }
Property Value
| Type | Description |
|---|---|
| UserProperties | The value of flags for this user. |
Remarks
This value is determined by bitwise OR-ing UserProperties values together.
IsMfaEnabled
Indicates whether or not this user has MFA enabled on their account.
Declaration
public bool IsMfaEnabled { get; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
|
IsVerified
Indicates whether or not this user has their email verified.
Declaration
public bool IsVerified { get; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
|
Locale
Gets the user's chosen language option.
Declaration
public string Locale { get; }
Property Value
| Type | Description |
|---|---|
| System.String | The IETF language tag of the user's chosen region, if provided. For example, a locale of "English, US" is "en-US", "Chinese (Taiwan)" is "zh-TW", etc. |
PremiumType
Gets the type of Nitro subscription that is active on this user's account.
Declaration
public PremiumType PremiumType { get; }
Property Value
| Type | Description |
|---|---|
| PremiumType | The type of Nitro subscription the user subscribes to, if any. |
Remarks
This information may only be available with the identify OAuth scope.
Methods
| Improve this Doc View SourceModifyAsync(Action<SelfUserProperties>, RequestOptions)
Modifies the user's properties.
Declaration
public Task ModifyAsync(Action<SelfUserProperties> func, RequestOptions options = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Action<SelfUserProperties> | func | |
| RequestOptions | options |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task |
Exceptions
| Type | Condition |
|---|---|
| System.InvalidOperationException | Unable to modify this object using a different token. |
UpdateAsync(RequestOptions)
Updates this object's properties with its current state.
Declaration
public override Task UpdateAsync(RequestOptions options = null)
Parameters
| Type | Name | Description |
|---|---|---|
| RequestOptions | options |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task |
Overrides
Exceptions
| Type | Condition |
|---|---|
| System.InvalidOperationException | Unable to update this object using a different token. |