BotAdapter.ContinueConversationAsync Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
ContinueConversationAsync(ClaimsIdentity, Activity, BotCallbackHandler, CancellationToken) |
Invia un messaggio proattivo a una conversazione. |
ContinueConversationAsync(ClaimsIdentity, ConversationReference, BotCallbackHandler, CancellationToken) |
Invia un messaggio proattivo a una conversazione. |
ContinueConversationAsync(String, Activity, BotCallbackHandler, CancellationToken) |
Invia un messaggio proattivo a una conversazione. |
ContinueConversationAsync(String, ConversationReference, BotCallbackHandler, CancellationToken) |
Invia un messaggio proattivo a una conversazione. |
ContinueConversationAsync(ClaimsIdentity, Activity, String, BotCallbackHandler, CancellationToken) |
Invia un messaggio proattivo a una conversazione. |
ContinueConversationAsync(ClaimsIdentity, ConversationReference, String, BotCallbackHandler, CancellationToken) |
Invia un messaggio proattivo a una conversazione. |
ContinueConversationAsync(ClaimsIdentity, Activity, BotCallbackHandler, CancellationToken)
Invia un messaggio proattivo a una conversazione.
public virtual System.Threading.Tasks.Task ContinueConversationAsync (System.Security.Claims.ClaimsIdentity claimsIdentity, Microsoft.Bot.Schema.Activity continuationActivity, Microsoft.Bot.Builder.BotCallbackHandler callback, System.Threading.CancellationToken cancellationToken);
abstract member ContinueConversationAsync : System.Security.Claims.ClaimsIdentity * Microsoft.Bot.Schema.Activity * Microsoft.Bot.Builder.BotCallbackHandler * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.ContinueConversationAsync : System.Security.Claims.ClaimsIdentity * Microsoft.Bot.Schema.Activity * Microsoft.Bot.Builder.BotCallbackHandler * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Overridable Function ContinueConversationAsync (claimsIdentity As ClaimsIdentity, continuationActivity As Activity, callback As BotCallbackHandler, cancellationToken As CancellationToken) As Task
Parametri
- claimsIdentity
- ClaimsIdentity
Oggetto ClaimsIdentity per la conversazione.
- continuationActivity
- Activity
Oggetto Activity con il quale ConversationReference continuare la conversazione.
- callback
- BotCallbackHandler
Metodo da chiamare per il bot risultante.
- cancellationToken
- CancellationToken
Token di annullamento utilizzabile da altri oggetti o thread per ricevere l'avviso dell'annullamento.
Restituisce
Attività che rappresenta la coda di lavoro da eseguire.
Commenti
Chiamare questo metodo per inviare in modo proattivo un messaggio a una conversazione. La maggior parte _channels richiedere a un utente di avviare una conversazione con un bot prima che il bot possa inviare attività all'utente.
Vedi anche
Si applica a
ContinueConversationAsync(ClaimsIdentity, ConversationReference, BotCallbackHandler, CancellationToken)
Invia un messaggio proattivo a una conversazione.
public virtual System.Threading.Tasks.Task ContinueConversationAsync (System.Security.Claims.ClaimsIdentity claimsIdentity, Microsoft.Bot.Schema.ConversationReference reference, Microsoft.Bot.Builder.BotCallbackHandler callback, System.Threading.CancellationToken cancellationToken);
abstract member ContinueConversationAsync : System.Security.Claims.ClaimsIdentity * Microsoft.Bot.Schema.ConversationReference * Microsoft.Bot.Builder.BotCallbackHandler * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.ContinueConversationAsync : System.Security.Claims.ClaimsIdentity * Microsoft.Bot.Schema.ConversationReference * Microsoft.Bot.Builder.BotCallbackHandler * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Overridable Function ContinueConversationAsync (claimsIdentity As ClaimsIdentity, reference As ConversationReference, callback As BotCallbackHandler, cancellationToken As CancellationToken) As Task
Parametri
- claimsIdentity
- ClaimsIdentity
Oggetto ClaimsIdentity per la conversazione.
- reference
- ConversationReference
Riferimento alla conversazione da continuare.
- callback
- BotCallbackHandler
Metodo da chiamare per il bot risultante.
- cancellationToken
- CancellationToken
Token di annullamento utilizzabile da altri oggetti o thread per ricevere l'avviso dell'annullamento.
Restituisce
Attività che rappresenta la coda di lavoro da eseguire.
Commenti
Chiamare questo metodo per inviare in modo proattivo un messaggio a una conversazione. La maggior parte _channels richiedere a un utente di avviare una conversazione con un bot prima che il bot possa inviare attività all'utente.
Vedi anche
Si applica a
ContinueConversationAsync(String, Activity, BotCallbackHandler, CancellationToken)
Invia un messaggio proattivo a una conversazione.
public virtual System.Threading.Tasks.Task ContinueConversationAsync (string botId, Microsoft.Bot.Schema.Activity continuationActivity, Microsoft.Bot.Builder.BotCallbackHandler callback, System.Threading.CancellationToken cancellationToken);
abstract member ContinueConversationAsync : string * Microsoft.Bot.Schema.Activity * Microsoft.Bot.Builder.BotCallbackHandler * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.ContinueConversationAsync : string * Microsoft.Bot.Schema.Activity * Microsoft.Bot.Builder.BotCallbackHandler * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Overridable Function ContinueConversationAsync (botId As String, continuationActivity As Activity, callback As BotCallbackHandler, cancellationToken As CancellationToken) As Task
Parametri
- botId
- String
ID applicazione del bot. Questo parametro viene ignorato in un singolo tenant gli adapter (console, test e così via), ma è fondamentale per BotFrameworkAdapter che è a conoscenza di più tenant.
- continuationActivity
- Activity
Oggetto Activity con il quale ConversationReference continuare la conversazione.
- callback
- BotCallbackHandler
Metodo da chiamare per il bot risultante.
- cancellationToken
- CancellationToken
Token di annullamento utilizzabile da altri oggetti o thread per ricevere l'avviso dell'annullamento.
Restituisce
Attività che rappresenta la coda di lavoro da eseguire.
Commenti
Chiamare questo metodo per inviare in modo proattivo un messaggio a una conversazione. La maggior parte _channels richiedere a un utente di avviare una conversazione con un bot prima che il bot possa inviare attività all'utente.
Vedi anche
Si applica a
ContinueConversationAsync(String, ConversationReference, BotCallbackHandler, CancellationToken)
Invia un messaggio proattivo a una conversazione.
public virtual System.Threading.Tasks.Task ContinueConversationAsync (string botId, Microsoft.Bot.Schema.ConversationReference reference, Microsoft.Bot.Builder.BotCallbackHandler callback, System.Threading.CancellationToken cancellationToken);
abstract member ContinueConversationAsync : string * Microsoft.Bot.Schema.ConversationReference * Microsoft.Bot.Builder.BotCallbackHandler * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.ContinueConversationAsync : string * Microsoft.Bot.Schema.ConversationReference * Microsoft.Bot.Builder.BotCallbackHandler * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Overridable Function ContinueConversationAsync (botId As String, reference As ConversationReference, callback As BotCallbackHandler, cancellationToken As CancellationToken) As Task
Parametri
- botId
- String
ID applicazione del bot. Questo parametro viene ignorato in un singolo tenant gli adapter (console, test e così via), ma è fondamentale per BotFrameworkAdapter che è a conoscenza di più tenant.
- reference
- ConversationReference
Riferimento alla conversazione da continuare.
- callback
- BotCallbackHandler
Metodo da chiamare per il bot risultante.
- cancellationToken
- CancellationToken
Token di annullamento utilizzabile da altri oggetti o thread per ricevere l'avviso dell'annullamento.
Restituisce
Attività che rappresenta la coda di lavoro da eseguire.
Commenti
Chiamare questo metodo per inviare in modo proattivo un messaggio a una conversazione. La maggior parte _channels richiedere a un utente di avviare una conversazione con un bot prima che il bot possa inviare attività all'utente.
Vedi anche
Si applica a
ContinueConversationAsync(ClaimsIdentity, Activity, String, BotCallbackHandler, CancellationToken)
Invia un messaggio proattivo a una conversazione.
public virtual 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);
abstract member ContinueConversationAsync : System.Security.Claims.ClaimsIdentity * Microsoft.Bot.Schema.Activity * string * Microsoft.Bot.Builder.BotCallbackHandler * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.ContinueConversationAsync : System.Security.Claims.ClaimsIdentity * Microsoft.Bot.Schema.Activity * string * Microsoft.Bot.Builder.BotCallbackHandler * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Overridable Function ContinueConversationAsync (claimsIdentity As ClaimsIdentity, continuationActivity As Activity, audience As String, callback As BotCallbackHandler, cancellationToken As CancellationToken) As Task
Parametri
- claimsIdentity
- ClaimsIdentity
Oggetto ClaimsIdentity per la conversazione.
- continuationActivity
- Activity
Oggetto Activity con il quale ConversationReference continuare la conversazione.
- audience
- String
Valore che indica il destinatario del messaggio proattivo.
- callback
- BotCallbackHandler
Metodo da chiamare per il bot risultante.
- cancellationToken
- CancellationToken
Token di annullamento utilizzabile da altri oggetti o thread per ricevere l'avviso dell'annullamento.
Restituisce
Attività che rappresenta la coda di lavoro da eseguire.
Commenti
Chiamare questo metodo per inviare in modo proattivo un messaggio a una conversazione. La maggior parte _channels richiedere a un utente di avviare una conversazione con un bot prima che il bot possa inviare attività all'utente.
Vedi anche
Si applica a
ContinueConversationAsync(ClaimsIdentity, ConversationReference, String, BotCallbackHandler, CancellationToken)
Invia un messaggio proattivo a una conversazione.
public virtual 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);
abstract member ContinueConversationAsync : System.Security.Claims.ClaimsIdentity * Microsoft.Bot.Schema.ConversationReference * string * Microsoft.Bot.Builder.BotCallbackHandler * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.ContinueConversationAsync : System.Security.Claims.ClaimsIdentity * Microsoft.Bot.Schema.ConversationReference * string * Microsoft.Bot.Builder.BotCallbackHandler * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Overridable Function ContinueConversationAsync (claimsIdentity As ClaimsIdentity, reference As ConversationReference, audience As String, callback As BotCallbackHandler, cancellationToken As CancellationToken) As Task
Parametri
- claimsIdentity
- ClaimsIdentity
Oggetto ClaimsIdentity per la conversazione.
- reference
- ConversationReference
Riferimento alla conversazione da continuare.
- audience
- String
Valore che indica il destinatario del messaggio proattivo.
- callback
- BotCallbackHandler
Metodo da chiamare per il bot risultante.
- cancellationToken
- CancellationToken
Token di annullamento utilizzabile da altri oggetti o thread per ricevere l'avviso dell'annullamento.
Restituisce
Attività che rappresenta la coda di lavoro da eseguire.
Commenti
Chiamare questo metodo per inviare in modo proattivo un messaggio a una conversazione. La maggior parte _channels richiedere a un utente di avviare una conversazione con un bot prima che il bot possa inviare attività all'utente.