1 write to Trust
System.Net.Security (1)
System\Net\Security\SslStreamCertificateContext.Linux.cs (1)
76Trust = trust;
6 references to Trust
System.Net.Security (6)
src\libraries\Common\src\Interop\Unix\System.Security.Cryptography.Native\Interop.OpenSsl.cs (2)
456if (sslAuthenticationOptions.CertificateContext.Trust?._sendTrustInHandshake == true) 458SslCertificateTrust trust = sslAuthenticationOptions.CertificateContext!.Trust!;
System\Net\Security\SslStream.IO.cs (1)
579if (!VerifyRemoteCertificate(_sslAuthenticationOptions.CertValidationDelegate, _sslAuthenticationOptions.CertificateContext?.Trust, ref alertToken, out sslPolicyErrors, out chainStatus))
System\Net\Security\SslStream.Protocol.cs (2)
747bool sendTrustedList = _sslAuthenticationOptions.CertificateContext!.Trust?._sendTrustInHandshake ?? false; 875sendTrustList = _sslAuthenticationOptions.CertificateContext?.Trust?._sendTrustInHandshake ?? false;
System\Net\Security\SslStreamCertificateContext.cs (1)
172return new SslStreamCertificateContext(new X509Certificate2(TargetCertificate), IntermediateCertificates, Trust);