diff --git a/src/Discord.Net.Core/Entities/Channels/IStageChannel.cs b/src/Discord.Net.Core/Entities/Channels/IStageChannel.cs
index e3b51b614..1461d8e50 100644
--- a/src/Discord.Net.Core/Entities/Channels/IStageChannel.cs
+++ b/src/Discord.Net.Core/Entities/Channels/IStageChannel.cs
@@ -77,7 +77,7 @@ namespace Discord
///
/// A task that represents the asynchronous request to speak operation.
///
- Task RequestToSpeak(RequestOptions options = null);
+ Task RequestToSpeakAsync(RequestOptions options = null);
///
/// Makes the current user become a speaker within a stage.
@@ -105,7 +105,7 @@ namespace Discord
///
/// A task that represents the asynchronous move operation.
///
- Task MoveToSpeaker(IGuildUser user, RequestOptions options = null);
+ Task MoveToSpeakerAsync(IGuildUser user, RequestOptions options = null);
///
/// Removes a user from speaking.
@@ -115,6 +115,6 @@ namespace Discord
///
/// A task that represents the asynchronous remove operation.
///
- Task RemoveFromSpeaker(IGuildUser user, RequestOptions options = null);
+ Task RemoveFromSpeakerAsync(IGuildUser user, RequestOptions options = null);
}
}
diff --git a/src/Discord.Net.Rest/Entities/Channels/RestStageChannel.cs b/src/Discord.Net.Rest/Entities/Channels/RestStageChannel.cs
index c5bad43da..dd5d2bfa9 100644
--- a/src/Discord.Net.Rest/Entities/Channels/RestStageChannel.cs
+++ b/src/Discord.Net.Rest/Entities/Channels/RestStageChannel.cs
@@ -96,7 +96,7 @@ namespace Discord.Rest
}
///
- public Task RequestToSpeak(RequestOptions options = null)
+ public Task RequestToSpeakAsync(RequestOptions options = null)
{
var args = new API.Rest.ModifyVoiceStateParams()
{
@@ -129,7 +129,7 @@ namespace Discord.Rest
}
///
- public Task MoveToSpeaker(IGuildUser user, RequestOptions options = null)
+ public Task MoveToSpeakerAsync(IGuildUser user, RequestOptions options = null)
{
var args = new API.Rest.ModifyVoiceStateParams()
{
@@ -141,7 +141,7 @@ namespace Discord.Rest
}
///
- public Task RemoveFromSpeaker(IGuildUser user, RequestOptions options = null)
+ public Task RemoveFromSpeakerAsync(IGuildUser user, RequestOptions options = null)
{
var args = new API.Rest.ModifyVoiceStateParams()
{
diff --git a/src/Discord.Net.WebSocket/Entities/Channels/SocketStageChannel.cs b/src/Discord.Net.WebSocket/Entities/Channels/SocketStageChannel.cs
index fb87a0591..0aa89ac8f 100644
--- a/src/Discord.Net.WebSocket/Entities/Channels/SocketStageChannel.cs
+++ b/src/Discord.Net.WebSocket/Entities/Channels/SocketStageChannel.cs
@@ -109,7 +109,7 @@ namespace Discord.WebSocket
}
///
- public Task RequestToSpeak(RequestOptions options = null)
+ public Task RequestToSpeakAsync(RequestOptions options = null)
{
var args = new API.Rest.ModifyVoiceStateParams()
{
@@ -142,7 +142,7 @@ namespace Discord.WebSocket
}
///
- public Task MoveToSpeaker(IGuildUser user, RequestOptions options = null)
+ public Task MoveToSpeakerAsync(IGuildUser user, RequestOptions options = null)
{
var args = new API.Rest.ModifyVoiceStateParams()
{
@@ -154,7 +154,7 @@ namespace Discord.WebSocket
}
///
- public Task RemoveFromSpeaker(IGuildUser user, RequestOptions options = null)
+ public Task RemoveFromSpeakerAsync(IGuildUser user, RequestOptions options = null)
{
var args = new API.Rest.ModifyVoiceStateParams()
{