Browse Source

Fixed Placement of Obsolete (#164)

Missing XML comment for publicly visible type or member 'InteractionResponseType.Acknowledge'
pull/1923/head
Simon Hjorthøj GitHub 3 years ago
parent
commit
75179e2b26
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/Discord.Net.Core/Entities/Interactions/InteractionResponseType.cs

+ 2
- 2
src/Discord.Net.Core/Entities/Interactions/InteractionResponseType.cs View File

@@ -22,16 +22,16 @@ namespace Discord
/// </summary>
Pong = 1,

[Obsolete("This response type has been depricated by discord. Either use ChannelMessageWithSource or DeferredChannelMessageWithSource", true)]
/// <summary>
/// ACK a command without sending a message, eating the user's input.
/// </summary>
[Obsolete("This response type has been depricated by discord. Either use ChannelMessageWithSource or DeferredChannelMessageWithSource", true)]
Acknowledge = 2,

[Obsolete("This response type has been depricated by discord. Either use ChannelMessageWithSource or DeferredChannelMessageWithSource", true)]
/// <summary>
/// Respond with a message, showing the user's input.
/// </summary>
[Obsolete("This response type has been depricated by discord. Either use ChannelMessageWithSource or DeferredChannelMessageWithSource", true)]
ChannelMessage = 3,

/// <summary>


Loading…
Cancel
Save