Browse Source

Move bulk deletes remarks from <summary> to <remarks>

tags/2.3.0
Still Hsu Still Hsu 5 years ago
parent
commit
62539f0391
No known key found for this signature in database GPG Key ID: 206F30E2490F42C0
1 changed files with 11 additions and 7 deletions
  1. +11
    -7
      src/Discord.Net.WebSocket/DiscordSocketConfig.cs

+ 11
- 7
src/Discord.Net.WebSocket/DiscordSocketConfig.cs View File

@@ -109,14 +109,18 @@ namespace Discord.WebSocket

/// <summary>
/// Gets or sets the behavior for <see cref="BaseSocketClient.MessageDeleted"/> on bulk deletes.
///
/// If true, the <see cref="BaseSocketClient.MessageDeleted"/> event will not be raised for bulk deletes, and
/// only the <see cref="BaseSocketClient.MessagesBulkDeleted"/> will be raised.
///
/// If false, both events will be raised.
///
/// If unset, both events will be raised, but a warning will be raised the first time a bulk delete event is received.
/// </summary>
/// <remarks>
/// <para>
/// If <c>true</c>, the <see cref="BaseSocketClient.MessageDeleted"/> event will not be raised for bulk
/// deletes, and only the <see cref="BaseSocketClient.MessagesBulkDeleted"/> will be raised. If <c>false</c>
/// , both events will be raised.
/// </para>
/// <para>
/// If unset, both events will be raised, but a warning will be raised the first time a bulk delete event is
/// received.
/// </para>
/// </remarks>
public bool? ExclusiveBulkDelete { get; set; } = null;

/// <summary>


Loading…
Cancel
Save