Browse Source

Add additional explanation for IGuildUser.RoleIds

pull/1218/head
Still Hsu 7 years ago
parent
commit
01d591c963
No known key found for this signature in database GPG Key ID: 8601A145FDA95209
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      src/Discord.Net.Core/Entities/Users/IGuildUser.cs

+ 5
- 0
src/Discord.Net.Core/Entities/Users/IGuildUser.cs View File

@@ -50,6 +50,11 @@ namespace Discord
/// <summary>
/// Gets a collection of IDs for the roles that this user currently possesses in the guild.
/// </summary>
/// <remarks>
/// This property returns a read-only collection of the identifiers of the roles that this user possesses.
/// For WebSocket users, a Roles property can be found in place of this property. Due to the REST
/// implementation, only a collection of identifiers can be retrieved instead of the full role objects.
/// </remarks>
/// <returns>
/// A read-only collection of <see cref="ulong"/>, each representing a snowflake identifier for a role that
/// this user possesses.


Loading…
Cancel
Save