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