Exemple #1
0
 public ClientSettings(List <IPacket> packetTable, bool useSSL, ServerCertificateIdentity?serverIdentity = null)
     : base(packetTable, useSSL)
 {
     if (serverIdentity != null)
     {
         SSLServerCertIdentity = (ServerCertificateIdentity)serverIdentity;
     }
 }
Exemple #2
0
 public ClientSettings(List<IPacket> packetTable, bool useSSL, ServerCertificateIdentity? serverIdentity = null)
     : base(packetTable, useSSL)
 {
     if(serverIdentity != null)
         SSLServerCertIdentity = (ServerCertificateIdentity)serverIdentity;
 }