コード例 #1
0
ファイル: AppState.cs プロジェクト: GoranHalvarsson/Gitter
 public void SetMyRooms(List <IChatRoom> value)
 {
     Console.WriteLine($"Setting Rooms {value?.Count} - there is {(GotChatRooms is object ? "" : "not")} a subscriber");
     myRooms = value;
     if (HasChatRooms)
     {
         GotChatRooms?.Invoke();
     }
 }
コード例 #2
0
ファイル: AppState.cs プロジェクト: mzike/Gitter
 void RaiseGotChatRoomsEvent()
 {
     GotChatRooms?.Invoke(this, null);
 }