CloudAdapterBase.ContinueConversationAsync Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Sobrecargas
ContinueConversationAsync(ClaimsIdentity, Activity, BotCallbackHandler, CancellationToken) |
Envía un mensaje proactivo a una conversación. |
ContinueConversationAsync(ClaimsIdentity, ConversationReference, BotCallbackHandler, CancellationToken) |
Envía un mensaje proactivo desde el bot a una conversación. |
ContinueConversationAsync(String, Activity, BotCallbackHandler, CancellationToken) |
Envía un mensaje proactivo a una conversación. |
ContinueConversationAsync(String, ConversationReference, BotCallbackHandler, CancellationToken) |
Envía un mensaje proactivo desde el bot a una conversación. |
ContinueConversationAsync(ClaimsIdentity, Activity, String, BotCallbackHandler, CancellationToken) |
Envía un mensaje proactivo a una conversación. |
ContinueConversationAsync(ClaimsIdentity, ConversationReference, String, BotCallbackHandler, CancellationToken) |
Envía un mensaje proactivo desde el bot a una conversación. |
ContinueConversationAsync(ClaimsIdentity, Activity, BotCallbackHandler, CancellationToken)
Envía un mensaje proactivo a una conversación.
public override System.Threading.Tasks.Task ContinueConversationAsync (System.Security.Claims.ClaimsIdentity claimsIdentity, Microsoft.Bot.Schema.Activity continuationActivity, Microsoft.Bot.Builder.BotCallbackHandler callback, System.Threading.CancellationToken cancellationToken);
override this.ContinueConversationAsync : System.Security.Claims.ClaimsIdentity * Microsoft.Bot.Schema.Activity * Microsoft.Bot.Builder.BotCallbackHandler * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Overrides Function ContinueConversationAsync (claimsIdentity As ClaimsIdentity, continuationActivity As Activity, callback As BotCallbackHandler, cancellationToken As CancellationToken) As Task
Parámetros
- claimsIdentity
- ClaimsIdentity
para ClaimsIdentity la conversación.
- continuationActivity
- Activity
un Activity con el adecuado ConversationReference con el que continuar la conversación.
- callback
- BotCallbackHandler
Método al que se va a llamar para el turno de bot resultante.
- cancellationToken
- CancellationToken
Token de cancelación que pueden usar otros objetos o subprocesos para recibir el aviso de cancelación.
Devoluciones
Tarea que representa el trabajo en cola que se va a ejecutar.
Se aplica a
ContinueConversationAsync(ClaimsIdentity, ConversationReference, BotCallbackHandler, CancellationToken)
Envía un mensaje proactivo desde el bot a una conversación.
public override System.Threading.Tasks.Task ContinueConversationAsync (System.Security.Claims.ClaimsIdentity claimsIdentity, Microsoft.Bot.Schema.ConversationReference reference, Microsoft.Bot.Builder.BotCallbackHandler callback, System.Threading.CancellationToken cancellationToken);
override this.ContinueConversationAsync : System.Security.Claims.ClaimsIdentity * Microsoft.Bot.Schema.ConversationReference * Microsoft.Bot.Builder.BotCallbackHandler * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Overrides Function ContinueConversationAsync (claimsIdentity As ClaimsIdentity, reference As ConversationReference, callback As BotCallbackHandler, cancellationToken As CancellationToken) As Task
Parámetros
- claimsIdentity
- ClaimsIdentity
para ClaimsIdentity la conversación.
- reference
- ConversationReference
Referencia a la conversación que se va a continuar.
- callback
- BotCallbackHandler
Método al que se va a llamar para el turno de bot resultante.
- cancellationToken
- CancellationToken
Token de cancelación.
Devoluciones
Tarea que representa el trabajo en cola que se va a ejecutar.
Se aplica a
ContinueConversationAsync(String, Activity, BotCallbackHandler, CancellationToken)
Envía un mensaje proactivo a una conversación.
public override System.Threading.Tasks.Task ContinueConversationAsync (string botAppId, Microsoft.Bot.Schema.Activity continuationActivity, Microsoft.Bot.Builder.BotCallbackHandler callback, System.Threading.CancellationToken cancellationToken);
override this.ContinueConversationAsync : string * Microsoft.Bot.Schema.Activity * Microsoft.Bot.Builder.BotCallbackHandler * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Overrides Function ContinueConversationAsync (botAppId As String, continuationActivity As Activity, callback As BotCallbackHandler, cancellationToken As CancellationToken) As Task
Parámetros
- botAppId
- String
- continuationActivity
- Activity
un Activity con el adecuado ConversationReference con el que continuar la conversación.
- callback
- BotCallbackHandler
Método al que se va a llamar para el turno de bot resultante.
- cancellationToken
- CancellationToken
Token de cancelación que pueden usar otros objetos o subprocesos para recibir el aviso de cancelación.
Devoluciones
Tarea que representa el trabajo en cola que se va a ejecutar.
Se aplica a
ContinueConversationAsync(String, ConversationReference, BotCallbackHandler, CancellationToken)
Envía un mensaje proactivo desde el bot a una conversación.
public override System.Threading.Tasks.Task ContinueConversationAsync (string botAppId, Microsoft.Bot.Schema.ConversationReference reference, Microsoft.Bot.Builder.BotCallbackHandler callback, System.Threading.CancellationToken cancellationToken);
override this.ContinueConversationAsync : string * Microsoft.Bot.Schema.ConversationReference * Microsoft.Bot.Builder.BotCallbackHandler * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Overrides Function ContinueConversationAsync (botAppId As String, reference As ConversationReference, callback As BotCallbackHandler, cancellationToken As CancellationToken) As Task
Parámetros
- botAppId
- String
Identificador de aplicación del bot. Este es el appId devuelto por el registro del portal y, por lo general, se encuentra en el parámetro "MicrosoftAppId" en appSettings.json.
- reference
- ConversationReference
Referencia a la conversación que se va a continuar.
- callback
- BotCallbackHandler
Método al que se va a llamar para el turno de bot resultante.
- cancellationToken
- CancellationToken
Token de cancelación.
Devoluciones
Tarea que representa el trabajo en cola que se va a ejecutar.
Se aplica a
ContinueConversationAsync(ClaimsIdentity, Activity, String, BotCallbackHandler, CancellationToken)
Envía un mensaje proactivo a una conversación.
public override System.Threading.Tasks.Task ContinueConversationAsync (System.Security.Claims.ClaimsIdentity claimsIdentity, Microsoft.Bot.Schema.Activity continuationActivity, string audience, Microsoft.Bot.Builder.BotCallbackHandler callback, System.Threading.CancellationToken cancellationToken);
override this.ContinueConversationAsync : System.Security.Claims.ClaimsIdentity * Microsoft.Bot.Schema.Activity * string * Microsoft.Bot.Builder.BotCallbackHandler * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Overrides Function ContinueConversationAsync (claimsIdentity As ClaimsIdentity, continuationActivity As Activity, audience As String, callback As BotCallbackHandler, cancellationToken As CancellationToken) As Task
Parámetros
- claimsIdentity
- ClaimsIdentity
para ClaimsIdentity la conversación.
- continuationActivity
- Activity
un Activity con el adecuado ConversationReference con el que continuar la conversación.
- audience
- String
Valor que indica al destinatario del mensaje proactivo.
- callback
- BotCallbackHandler
Método al que se va a llamar para el turno de bot resultante.
- cancellationToken
- CancellationToken
Token de cancelación que pueden usar otros objetos o subprocesos para recibir el aviso de cancelación.
Devoluciones
Tarea que representa el trabajo en cola que se va a ejecutar.
Se aplica a
ContinueConversationAsync(ClaimsIdentity, ConversationReference, String, BotCallbackHandler, CancellationToken)
Envía un mensaje proactivo desde el bot a una conversación.
public override System.Threading.Tasks.Task ContinueConversationAsync (System.Security.Claims.ClaimsIdentity claimsIdentity, Microsoft.Bot.Schema.ConversationReference reference, string audience, Microsoft.Bot.Builder.BotCallbackHandler callback, System.Threading.CancellationToken cancellationToken);
override this.ContinueConversationAsync : System.Security.Claims.ClaimsIdentity * Microsoft.Bot.Schema.ConversationReference * string * Microsoft.Bot.Builder.BotCallbackHandler * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Overrides Function ContinueConversationAsync (claimsIdentity As ClaimsIdentity, reference As ConversationReference, audience As String, callback As BotCallbackHandler, cancellationToken As CancellationToken) As Task
Parámetros
- claimsIdentity
- ClaimsIdentity
para ClaimsIdentity la conversación.
- reference
- ConversationReference
Referencia a la conversación que se va a continuar.
- audience
- String
Audiencia de destino para el conector.
- callback
- BotCallbackHandler
Método al que se va a llamar para el turno de bot resultante.
- cancellationToken
- CancellationToken
Token de cancelación.
Devoluciones
Tarea que representa el trabajo en cola que se va a ejecutar.