Пример #1
0
		public TcpServer(string ip, Service service, Type typeCls) : base(ip, service, typeCls) { }
Пример #2
0
		public DeployAppTcpServer(string ip, Service service)
			: base(ip, service, typeof(DeployAppTcpServer))
		{
			startMessage = "Deploy App TCP started on port: " + service.Port;
		}
Пример #3
0
		public AbstractServer(string ip, Service service, Type typeCls)
		{
			this.ip = ip;
			logger = Logger.GetLogger(typeCls);
			Service = service;
		}