Browse Source

Add warning for Direction.Around

pull/1218/head
Still Hsu 7 years ago
parent
commit
9cbd722b27
No known key found for this signature in database GPG Key ID: 8601A145FDA95209
1 changed files with 8 additions and 0 deletions
  1. +8
    -0
      src/Discord.Net.Core/Entities/Channels/Direction.cs

+ 8
- 0
src/Discord.Net.Core/Entities/Channels/Direction.cs View File

@@ -3,6 +3,14 @@ namespace Discord
/// <summary>
/// Specifies the direction of where message(s) should be gotten from.
/// </summary>
/// <remarks>
/// This enum is used to specify what direction should the message retrieval go.
/// <note type="important">
/// At the time of writing, <see cref="Around"/> is not yet implemented into
/// <see cref="IMessageChannel.GetMessagesAsync"/>. Attempting to use the method with <see cref="Around"/>
/// as its direction will throw a <see cref="System.NotImplementedException"/>.
/// </note>
/// </remarks>
public enum Direction
{
/// <summary>


Loading…
Cancel
Save