Browse Source

Update xmldoc

pull/1165/head
Chris Johnston 7 years ago
parent
commit
737f0481b3
3 changed files with 9 additions and 6 deletions
  1. +7
    -6
      src/Discord.Net.Core/Entities/Guilds/IGuild.cs
  2. +1
    -0
      src/Discord.Net.Rest/Entities/Guilds/RestGuild.cs
  3. +1
    -0
      src/Discord.Net.WebSocket/Entities/Guilds/SocketGuild.cs

+ 7
- 6
src/Discord.Net.Core/Entities/Guilds/IGuild.cs View File

@@ -140,20 +140,21 @@ namespace Discord
/// welcome messages are sent; <c>null</c> if none is set. /// welcome messages are sent; <c>null</c> if none is set.
/// </returns> /// </returns>
ulong? SystemChannelId { get; } ulong? SystemChannelId { get; }
<<<<<<< HEAD
/// <summary> /// <summary>
/// Gets the ID of the user that owns this guild. /// Gets the ID of the user that owns this guild.
/// </summary> /// </summary>
/// <returns> /// <returns>
/// A <see cref="ulong"/> representing the snowflake identifier of the user that owns this guild. /// A <see cref="ulong"/> representing the snowflake identifier of the user that owns this guild.
/// </returns> /// </returns>
=======
/// <summary> Gets the application id of the guild creator if it is bot-created. </summary>
ulong? ApplicationId { get; }
/// <summary> Gets the id of the user that created this guild. </summary>
>>>>>>> Implement ApplicationId in Guild model
ulong OwnerId { get; } ulong OwnerId { get; }
/// <summary> /// <summary>
/// Gets the application id of the guild creator if it is bot-created.
/// </summary>
/// <returns>
/// A <see cref="ulong"/> representing the snowflake identifier of the application Id that created this guild, or <c>null</c> if it was not bot-created.
/// </returns>
ulong? ApplicationId { get; }
/// <summary>
/// Gets the ID of the region hosting this guild's voice channels. /// Gets the ID of the region hosting this guild's voice channels.
/// </summary> /// </summary>
/// <returns> /// <returns>


+ 1
- 0
src/Discord.Net.Rest/Entities/Guilds/RestGuild.cs View File

@@ -32,6 +32,7 @@ namespace Discord.Rest
public MfaLevel MfaLevel { get; private set; } public MfaLevel MfaLevel { get; private set; }
/// <inheritdoc /> /// <inheritdoc />
public DefaultMessageNotifications DefaultMessageNotifications { get; private set; } public DefaultMessageNotifications DefaultMessageNotifications { get; private set; }
/// <inheritdoc />
public ExplicitContentFilterLevel ExplicitContentFilter { get; private set; } public ExplicitContentFilterLevel ExplicitContentFilter { get; private set; }


/// <inheritdoc /> /// <inheritdoc />


+ 1
- 0
src/Discord.Net.WebSocket/Entities/Guilds/SocketGuild.cs View File

@@ -75,6 +75,7 @@ namespace Discord.WebSocket
internal bool IsAvailable { get; private set; } internal bool IsAvailable { get; private set; }
/// <summary> Indicates whether the client is connected to this guild. </summary> /// <summary> Indicates whether the client is connected to this guild. </summary>
public bool IsConnected { get; internal set; } public bool IsConnected { get; internal set; }
/// <inheritdoc />
public ulong? ApplicationId { get; internal set; } public ulong? ApplicationId { get; internal set; }


internal ulong? AFKChannelId { get; private set; } internal ulong? AFKChannelId { get; private set; }


Loading…
Cancel
Save