Exemple #1
0
 /// <summary>
 /// Removes a dialog from the current active conversation using the dialog id.
 /// </summary>
 /// <param name="id"></param>
 /// <returns></returns>
 public bool RemoveDialog(int id)
 {
     return(ActiveConversation.RemoveDialog(id));
 }
Exemple #2
0
 /// <summary>
 /// Removes a dialog from the current active conversation.
 /// </summary>
 /// <param name="dialog"></param>
 /// <returns></returns>
 public bool RemoveDialog(Dialog dialog)
 {
     return(ActiveConversation.RemoveDialog(dialog));
 }