Beispiel #1
0
 public SslStatus(bool isSecureConnection, CertStatus certStatus, SslVersion sslVersion, SslContentStatus contentStatus, X509Certificate2 certificate)
 {
     IsSecureConnection = isSecureConnection;
     CertStatus         = certStatus;
     SslVersion         = sslVersion;
     ContentStatus      = contentStatus;
     X509Certificate    = certificate;
 }
Beispiel #2
0
 public SslStatus(bool isSecureConnection, CertStatus certStatus, SslVersion sslVersion, SslContentStatus contentStatus, X509Certificate2 certificate)
 {
     this.isSecureConnection = isSecureConnection;
     this.certStatus = certStatus;
     this.sslVersion = sslVersion;
     this.contentStatus = contentStatus;
     this.certificate = certificate;
 }