コード例 #1
0
        public ProcessThread(TcpClient client, ServerConfigurationElement config)
        {
            this.client        = client;
            this.config        = config;
            this.insideCommand = new InsideCommand();
            this.thread        = new Thread(process);

            initInsideCommand();
        }
コード例 #2
0
 public SoaServer()
 {
     configSection = JZFSection.GetInstances().Soa.Server;
 }