コード例 #1
0
ファイル: Server.cs プロジェクト: anaska/WhisperChat
 private void GetNotification(IClient c)
 {
     foreach (IClient friend in c.Friends)
     {
         if (db.GotMessage(friend.ID, c.ID))
         {
             c.AddNotification(friend.ID, true);
         }
     }
 }
コード例 #2
0
ファイル: Server.cs プロジェクト: anaska/WhisperChat
 private void GetNotification(IClient c)
 {
     foreach (IClient friend in c.Friends)
         if (db.GotMessage(friend.ID, c.ID))
             c.AddNotification(friend.ID, true);
 }