Browse Source

Add <remarks> tag to the IGuildIntegration xmldocs

pull/1161/head
Chris Johnston 7 years ago
parent
commit
6e80cef06e
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      src/Discord.Net.Core/Entities/Guilds/IGuildIntegration.cs

+ 6
- 0
src/Discord.Net.Core/Entities/Guilds/IGuildIntegration.cs View File

@@ -18,6 +18,12 @@ namespace Discord
bool IsEnabled { get; } bool IsEnabled { get; }
/// <summary> Gets if this integration is syncing or not. </summary> /// <summary> Gets if this integration is syncing or not. </summary>
/// <returns> A value indicating if this integration is syncing. </returns> /// <returns> A value indicating if this integration is syncing. </returns>
/// <remarks>
/// An integration with syncing enabled will update it's "subscribers" on
/// an interval, while one with syncing disabled will not.
/// A user must manually choose when sync the integration
/// if syncing is disabled.
/// </remarks>
bool IsSyncing { get; } bool IsSyncing { get; }
/// <summary> Gets the ID that this integration uses for "subscribers". </summary> /// <summary> Gets the ID that this integration uses for "subscribers". </summary>
ulong ExpireBehavior { get; } ulong ExpireBehavior { get; }


Loading…
Cancel
Save