public ConversationAbandonedEventArgs(Conversation conversation, IConversationCanceller canceller)
 {
     this.context   = conversation.Context;
     this.canceller = canceller;
 }
Beispiel #2
0
 public void AddConversationCanceller(IConversationCanceller canceller)
 {
     canceller.SetConversation(this);
     this.cancellers.Add(canceller);
 }
 public ConversationFactory WithConversationCanceller(IConversationCanceller canceller)
 {
     cancellers.Add(canceller);
     return(this);
 }