Extensions.PostAsync(IBotToUser, String, String, CancellationToken) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Post a message to be sent to the user, using previous messages to establish a conversation context.
public static System.Threading.Tasks.Task PostAsync (this Microsoft.Bot.Builder.Dialogs.Internals.IBotToUser botToUser, string text, string locale = default, System.Threading.CancellationToken cancellationToken = default);
static member PostAsync : Microsoft.Bot.Builder.Dialogs.Internals.IBotToUser * string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task
<Extension()>
Public Function PostAsync (botToUser As IBotToUser, text As String, Optional locale As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task
Parameters
- botToUser
- IBotToUser
Communication channel to use.
- text
- String
The message text.
- locale
- String
The locale of the text.
- cancellationToken
- CancellationToken
The cancellation token.
Returns
A task that represents the post operation.
Remarks
If the locale parameter is not set, locale of the incoming message will be used for reply.