Esempio n. 1
0
 public ServerChat(ChatService service)
 {
     // Receive our chat service to work on
     ChatService = service;
     AllSockets  = new List <IWebSocketConnection>();
 }
Esempio n. 2
0
 public ClientChat(ChatService service, string connectionString)
 {
     ChatService       = service;
     _connectionString = connectionString;
 }