Browse Source

Update remark

pull/1236/head
NovusTheory 6 years ago
parent
commit
7a1bece812
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      src/Discord.Net.WebSocket/BaseSocketClient.Events.cs

+ 4
- 1
src/Discord.Net.WebSocket/BaseSocketClient.Events.cs View File

@@ -110,9 +110,12 @@ namespace Discord.WebSocket
internal readonly AsyncEvent<Func<Cacheable<IMessage, ulong>, ISocketMessageChannel, Task>> _messageDeletedEvent = new AsyncEvent<Func<Cacheable<IMessage, ulong>, ISocketMessageChannel, Task>>(); internal readonly AsyncEvent<Func<Cacheable<IMessage, ulong>, ISocketMessageChannel, Task>> _messageDeletedEvent = new AsyncEvent<Func<Cacheable<IMessage, ulong>, ISocketMessageChannel, Task>>();
/// <summary> Fired when multiple messages are bulk deleted. </summary> /// <summary> Fired when multiple messages are bulk deleted. </summary>
/// <remarks> /// <remarks>
/// <note>
/// The <see cref="MessageDeleted"/> event will not be fired for individual messages contained in this event.
/// </note>
/// <para> /// <para>
/// This event is fired when multiple messages are bulk deleted. The event handler must return a /// This event is fired when multiple messages are bulk deleted. The event handler must return a
/// <see cref="Task"/> and accept a <see cref="IReadOnlyCollection{Cacheable{TEntity,TId}}"/> and
/// <see cref="Task"/> and accept an <see cref="IReadOnlyCollection{Cacheable{TEntity,TId}}"/> and
/// <see cref="ISocketMessageChannel"/> as its parameters. /// <see cref="ISocketMessageChannel"/> as its parameters.
/// </para> /// </para>
/// <para> /// <para>


Loading…
Cancel
Save