コード例 #1
0
ファイル: Client.cs プロジェクト: BoboBH/Demo
 public Client(SocketConfig config = null)
 {
     if (config == null)
     {
         this.config = new SocketConfig();
     }
     else
     {
         this.config = config;
     }
 }
コード例 #2
0
ファイル: Server.cs プロジェクト: BoboBH/Demo
 public Server(SocketConfig config = null)
 {
     if (config == null)
     {
         this.config = new SocketConfig();
     }
     else
     {
         this.config = config;
     }
     this.socketPool = new Dictionary <string, SocketConnectInstance>();
 }