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