Browse Source

Remove obsolete method from interaction base

pull/1923/head
quin lynch 3 years ago
parent
commit
436cbae817
1 changed files with 0 additions and 9 deletions
  1. +0
    -9
      src/Discord.Net.WebSocket/Entities/Interaction/SocketInteraction.cs

+ 0
- 9
src/Discord.Net.WebSocket/Entities/Interaction/SocketInteraction.cs View File

@@ -204,15 +204,6 @@ namespace Discord.WebSocket
return RestInteractionMessage.Create(this.Discord, model, this.Token, this.Channel); return RestInteractionMessage.Create(this.Discord, model, this.Token, this.Channel);
} }


/// <summary>
/// Acknowledges this interaction.
/// </summary>
/// <returns>
/// A task that represents the asynchronous operation of acknowledging the interaction.
/// </returns>
[Obsolete("This method deprecated, please use DeferAsync instead")]
public Task AcknowledgeAsync(RequestOptions options = null) => DeferAsync(options: options);

/// <summary> /// <summary>
/// Acknowledges this interaction. /// Acknowledges this interaction.
/// </summary> /// </summary>


Loading…
Cancel
Save