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

This commit is contained in:
Still Hsu
2020-05-22 11:42:29 +08:00
committed by Still Hsu
parent 9ea3291ef1
commit 62539f0391

View File

@@ -109,14 +109,18 @@ namespace Discord.WebSocket
/// <summary> /// <summary>
/// Gets or sets the behavior for <see cref="BaseSocketClient.MessageDeleted"/> on bulk deletes. /// 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> /// </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; public bool? ExclusiveBulkDelete { get; set; } = null;
/// <summary> /// <summary>