From 6e80cef06e2835bd6f7ec084e66e6fe53fc40d95 Mon Sep 17 00:00:00 2001 From: Chris Johnston Date: Thu, 9 Aug 2018 21:36:10 -0700 Subject: [PATCH] Add tag to the IGuildIntegration xmldocs --- src/Discord.Net.Core/Entities/Guilds/IGuildIntegration.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Discord.Net.Core/Entities/Guilds/IGuildIntegration.cs b/src/Discord.Net.Core/Entities/Guilds/IGuildIntegration.cs index d4ded04fd..392f42db3 100644 --- a/src/Discord.Net.Core/Entities/Guilds/IGuildIntegration.cs +++ b/src/Discord.Net.Core/Entities/Guilds/IGuildIntegration.cs @@ -18,6 +18,12 @@ namespace Discord bool IsEnabled { get; } /// Gets if this integration is syncing or not. /// A value indicating if this integration is syncing. + /// + /// 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. + /// bool IsSyncing { get; } /// Gets the ID that this integration uses for "subscribers". ulong ExpireBehavior { get; }