|
|
@@ -26,7 +26,7 @@ namespace Discord.WebSocket |
|
|
|
/// <param name="embed">The <see cref="Discord.EmbedType.Rich"/> <see cref="Embed"/> to be sent.</param> |
|
|
|
/// <param name="options">The options to be used when sending the request.</param> |
|
|
|
/// <returns> |
|
|
|
/// A task that represents an asynchronous send operation for delievering the message. The task result |
|
|
|
/// A task that represents an asynchronous send operation for delivering the message. The task result |
|
|
|
/// contains the sent message. |
|
|
|
/// </returns> |
|
|
|
new Task<RestUserMessage> SendMessageAsync(string text = null, bool isTTS = false, Embed embed = null, RequestOptions options = null); |
|
|
@@ -47,7 +47,7 @@ namespace Discord.WebSocket |
|
|
|
/// <param name="embed">The <see cref="Discord.EmbedType.Rich" /> <see cref="Embed" /> to be sent.</param> |
|
|
|
/// <param name="options">The options to be used when sending the request.</param> |
|
|
|
/// <returns> |
|
|
|
/// A task that represents an asynchronous send operation for delievering the message. The task result |
|
|
|
/// A task that represents an asynchronous send operation for delivering the message. The task result |
|
|
|
/// contains the sent message. |
|
|
|
/// </returns> |
|
|
|
new Task<RestUserMessage> SendFileAsync(string filePath, string text = null, bool isTTS = false, Embed embed = null, RequestOptions options = null); |
|
|
@@ -69,7 +69,7 @@ namespace Discord.WebSocket |
|
|
|
/// <param name="embed">The <see cref="Discord.EmbedType.Rich"/> <see cref="Embed"/> to be sent.</param> |
|
|
|
/// <param name="options">The options to be used when sending the request.</param> |
|
|
|
/// <returns> |
|
|
|
/// A task that represents an asynchronous send operation for delievering the message. The task result |
|
|
|
/// A task that represents an asynchronous send operation for delivering the message. The task result |
|
|
|
/// contains the sent message. |
|
|
|
/// </returns> |
|
|
|
new Task<RestUserMessage> SendFileAsync(Stream stream, string filename, string text = null, bool isTTS = false, Embed embed = null, RequestOptions options = null); |
|
|
|