示例#1
0
 //todo
 protected void RegisterClient(String group, ICollaborativeClientDetails client)
 {
     if (!mClientDetailsGroups.ContainsKey(group))
     {
         mClientDetailsGroups[group] = new Collection <ICollaborativeClientDetails>();
     }
     mClientDetailsGroups[group].Add(client);
 }
 public int CompareTo(ICollaborativeClientDetails other)
 {
     if (Equals(other))
     {
         return(0);
     }
     else
     {
         return(1);
     }
 }
示例#3
0
 public ServerRegisterEventArgs(ICollaborativeClientDetails newClient)
 {
     mNewClient = newClient;
 }