Esempio n. 1
0
 private static void ChatClient_NotificationAddedToGroup(object sender, NotifyAddedToGroupEventArgs e)
 {
     ClearCurrentConsoleLine();
     System.Console.WriteLine("You had added to group {0} by {1}",
                              e.GroupIdentity.ToString(), e.ClientAdded.ToString());
     System.Console.Write("[You]: ");
 }
Esempio n. 2
0
 private void ChatClient_NotificationAddedToGroup(object sender, NotifyAddedToGroupEventArgs e)
 {
     groupList.Add(e.GroupIdentity);
     StateHasChanged();
 }