コード例 #1
0
ファイル: Conversation.cs プロジェクト: QuinntyneBrown/DblDip
 public void When(ConversationUpdated conversationUpdated)
 {
 }
コード例 #2
0
 /// <summary>
 /// This will set the <see cref="Name"/>.
 /// </summary>
 protected virtual void Apply(ConversationUpdated @event)
 {
     Name = @event.Name;
 }
コード例 #3
0
 internal void OnConversationUpdated(object sender, ConversationEventArgs args)
 {
     ConversationUpdated.Raise(sender, args);
 }