Exemplo n.º 1
0
 public CreateChatRoom(ChatServer server, ClientConnection client) : base(server, client)
 {
     //
 }
Exemplo n.º 2
0
 public AddUserToRoom(ChatServer server, ClientConnection client) : base(server, client)
 {
     //
 }
Exemplo n.º 3
0
 public JoinUser(ChatServer server, ClientConnection client) : base(server, client)
 {
     //
 }
 public Chatting(ChatServer server, ClientConnection client) : base(server, client)
 {
     //
 }
Exemplo n.º 5
0
 public TerminateClient(ChatServer server, ClientConnection client) : base(server, client)
 {
     //
 }
Exemplo n.º 6
0
 public Services(ChatServer server, ClientConnection client)
 {
     _client = client;
     _server = server;
 }