Exemple #1
0
 public AsyncAlertEventArgs(Conversation conv)
 {
     StartedConversation = conv;
 }
Exemple #2
0
 /// <summary>
 /// Indicates whether the app can create a conversation from the given initial dialog.
 /// A conversation should be created, if one may be created.
 /// </summary>
 /// <param name="phrase">Initial dialog that the user is trying to create a conversation from.</param>
 /// <param name="createdConversation">If a conversation could be created, this is a pointer to the conversation. Otherwise, it is assumed to be null.</param>
 /// <returns>True if a conversation could be created. False otherwise.</returns>
 public virtual bool TryCreateConversationFromPhrase(Dialog phrase, out Conversation createdConversation)
 {
     createdConversation = null;
     return(false);
 }