Server.Monitor.Monitor C# (CSharp) 메소드

Monitor() 공개 메소드

public Monitor ( TcpClient client, Program server, List clients, DataStorage storage ) : System
client TcpClient
server Program
clients List
storage DataStorage
리턴 System
        public Monitor(TcpClient client, Program server, List<Client> clients, DataStorage storage)
            : base(client, server)
        {
            this._storage = storage;
            this._clients = clients;
        }