Interface IUserGuild
- Namespace
- Discord
- Assembly
- Discord.Net.Core.dll
public interface IUserGuild : IDeletable, ISnowflakeEntity, IEntity<ulong>
- Inherited Members
Properties
ApproximateMemberCount
Gets the approximate number of members in this guild.
int? ApproximateMemberCount { get; }
Property Value
- int?
Remarks
Only available when getting a guild via REST when with_counts
is true.
ApproximatePresenceCount
Gets the approximate number of non-offline members in this guild.
int? ApproximatePresenceCount { get; }
Property Value
- int?
Remarks
Only available when getting a guild via REST when with_counts
is true.
Features
Gets the features for this guild.
GuildFeatures Features { get; }
Property Value
- GuildFeatures
A flags enum containing all the features for the guild.
IconUrl
Gets the icon URL associated with this guild, or null if one is not set.
string IconUrl { get; }
Property Value
IsOwner
Returns true if the current user owns this guild.
bool IsOwner { get; }
Property Value
Name
Gets the name of this guild.
string Name { get; }
Property Value
Permissions
Returns the current user's permissions for this guild.
GuildPermissions Permissions { get; }