| @@ -77,7 +77,7 @@ namespace Discord | |||||
| /// <returns> | /// <returns> | ||||
| /// A task that represents the asynchronous request to speak operation. | /// A task that represents the asynchronous request to speak operation. | ||||
| /// </returns> | /// </returns> | ||||
| Task RequestToSpeak(RequestOptions options = null); | |||||
| Task RequestToSpeakAsync(RequestOptions options = null); | |||||
| /// <summary> | /// <summary> | ||||
| /// Makes the current user become a speaker within a stage. | /// Makes the current user become a speaker within a stage. | ||||
| @@ -105,7 +105,7 @@ namespace Discord | |||||
| /// <returns> | /// <returns> | ||||
| /// A task that represents the asynchronous move operation. | /// A task that represents the asynchronous move operation. | ||||
| /// </returns> | /// </returns> | ||||
| Task MoveToSpeaker(IGuildUser user, RequestOptions options = null); | |||||
| Task MoveToSpeakerAsync(IGuildUser user, RequestOptions options = null); | |||||
| /// <summary> | /// <summary> | ||||
| /// Removes a user from speaking. | /// Removes a user from speaking. | ||||
| @@ -115,6 +115,6 @@ namespace Discord | |||||
| /// <returns> | /// <returns> | ||||
| /// A task that represents the asynchronous remove operation. | /// A task that represents the asynchronous remove operation. | ||||
| /// </returns> | /// </returns> | ||||
| Task RemoveFromSpeaker(IGuildUser user, RequestOptions options = null); | |||||
| Task RemoveFromSpeakerAsync(IGuildUser user, RequestOptions options = null); | |||||
| } | } | ||||
| } | } | ||||
| @@ -96,7 +96,7 @@ namespace Discord.Rest | |||||
| } | } | ||||
| /// <inheritdoc/> | /// <inheritdoc/> | ||||
| public Task RequestToSpeak(RequestOptions options = null) | |||||
| public Task RequestToSpeakAsync(RequestOptions options = null) | |||||
| { | { | ||||
| var args = new API.Rest.ModifyVoiceStateParams() | var args = new API.Rest.ModifyVoiceStateParams() | ||||
| { | { | ||||
| @@ -129,7 +129,7 @@ namespace Discord.Rest | |||||
| } | } | ||||
| /// <inheritdoc/> | /// <inheritdoc/> | ||||
| public Task MoveToSpeaker(IGuildUser user, RequestOptions options = null) | |||||
| public Task MoveToSpeakerAsync(IGuildUser user, RequestOptions options = null) | |||||
| { | { | ||||
| var args = new API.Rest.ModifyVoiceStateParams() | var args = new API.Rest.ModifyVoiceStateParams() | ||||
| { | { | ||||
| @@ -141,7 +141,7 @@ namespace Discord.Rest | |||||
| } | } | ||||
| /// <inheritdoc/> | /// <inheritdoc/> | ||||
| public Task RemoveFromSpeaker(IGuildUser user, RequestOptions options = null) | |||||
| public Task RemoveFromSpeakerAsync(IGuildUser user, RequestOptions options = null) | |||||
| { | { | ||||
| var args = new API.Rest.ModifyVoiceStateParams() | var args = new API.Rest.ModifyVoiceStateParams() | ||||
| { | { | ||||
| @@ -109,7 +109,7 @@ namespace Discord.WebSocket | |||||
| } | } | ||||
| /// <inheritdoc/> | /// <inheritdoc/> | ||||
| public Task RequestToSpeak(RequestOptions options = null) | |||||
| public Task RequestToSpeakAsync(RequestOptions options = null) | |||||
| { | { | ||||
| var args = new API.Rest.ModifyVoiceStateParams() | var args = new API.Rest.ModifyVoiceStateParams() | ||||
| { | { | ||||
| @@ -142,7 +142,7 @@ namespace Discord.WebSocket | |||||
| } | } | ||||
| /// <inheritdoc/> | /// <inheritdoc/> | ||||
| public Task MoveToSpeaker(IGuildUser user, RequestOptions options = null) | |||||
| public Task MoveToSpeakerAsync(IGuildUser user, RequestOptions options = null) | |||||
| { | { | ||||
| var args = new API.Rest.ModifyVoiceStateParams() | var args = new API.Rest.ModifyVoiceStateParams() | ||||
| { | { | ||||
| @@ -154,7 +154,7 @@ namespace Discord.WebSocket | |||||
| } | } | ||||
| /// <inheritdoc/> | /// <inheritdoc/> | ||||
| public Task RemoveFromSpeaker(IGuildUser user, RequestOptions options = null) | |||||
| public Task RemoveFromSpeakerAsync(IGuildUser user, RequestOptions options = null) | |||||
| { | { | ||||
| var args = new API.Rest.ModifyVoiceStateParams() | var args = new API.Rest.ModifyVoiceStateParams() | ||||
| { | { | ||||