示例#1
0
 public TcpClient(Battlenet.ProtocolType protocolType) : base()
 {
     this.protocolType = protocolType;
 }
示例#2
0
 public TcpClient(Battlenet.ProtocolType protocolType, AddressFamily family) : base(family)
 {
     this.protocolType = protocolType;
 }
示例#3
0
 public TcpClient(Battlenet.ProtocolType protocolType, string hostname, int port) : base(hostname, port)
 {
     this.protocolType = protocolType;
 }
示例#4
0
 public TcpClient(Battlenet.ProtocolType protocolType, IPEndPoint localEP) : base(localEP)
 {
     this.protocolType = protocolType;
 }