2 writes to ChainPolicy
System.ServiceModel (2)
System\ServiceModel\Security\X509ClientCertificateAuthentication.cs (2)
254
chain.
ChainPolicy
= this.chainPolicy;
266
chain.
ChainPolicy
= OidChainPolicy;
34 references to ChainPolicy
System (7)
net\System\Net\_SecureChannel.cs (6)
641
chain.
ChainPolicy
.RevocationMode = X509RevocationMode.NoCheck;
642
chain.
ChainPolicy
.VerificationFlags = X509VerificationFlags.IgnoreInvalidName;
1251
chain.
ChainPolicy
.RevocationMode = m_CheckCertRevocation? X509RevocationMode.Online : X509RevocationMode.NoCheck;
1252
chain.
ChainPolicy
.RevocationFlag = X509RevocationFlag.ExcludeRoot;
1257
chain.
ChainPolicy
.ApplicationPolicy.Add(m_ServerMode ? m_ClientAuthOid : m_ServerAuthOid);
1261
chain.
ChainPolicy
.ExtraStore.AddRange(remoteCertificateStore);
security\system\security\cryptography\x509\x509chain.cs (1)
191
X509ChainPolicy chainPolicy = this.
ChainPolicy
;
System.Core (2)
System\Security\Cryptography\Xml\ManifestSignedXml.cs (2)
112
signatureChain.
ChainPolicy
.RevocationFlag = revocationFlag;
113
signatureChain.
ChainPolicy
.RevocationMode = revocationMode;
System.IdentityModel (4)
System\IdentityModel\Claims\X509CertificateClaimSet.cs (1)
104
chain.
ChainPolicy
.RevocationMode = X509RevocationMode.NoCheck;
System\IdentityModel\Selectors\X509CertificateStore.cs (2)
328
chain.
ChainPolicy
.RevocationMode = X509RevocationMode.NoCheck;
329
chain.
ChainPolicy
.RevocationFlag = X509RevocationFlag.ExcludeRoot;
System\IdentityModel\X509Util.cs (1)
136
chain.
ChainPolicy
.RevocationMode = X509RevocationMode.NoCheck;
System.Security (6)
system\security\cryptography\xml\signedxml.cs (1)
335
chain.
ChainPolicy
.ExtraStore.AddRange(BuildBagOfCerts());
system\security\cryptography\xml\SignedXmlDebugLog.cs (5)
901
chain.
ChainPolicy
.RevocationFlag);
906
chain.
ChainPolicy
.RevocationFlag);
911
chain.
ChainPolicy
.VerificationFlags);
916
chain.
ChainPolicy
.VerificationTime);
921
chain.
ChainPolicy
.UrlRetrievalTimeout);
System.ServiceModel (3)
System\ServiceModel\Description\ConfigLoader.cs (1)
123
chain.
ChainPolicy
.RevocationMode = X509RevocationMode.NoCheck;
System\ServiceModel\Security\X509ClientCertificateAuthentication.cs (2)
255
chain.
ChainPolicy
.VerificationTime = DateTime.Now;
267
chain.
ChainPolicy
.VerificationTime = DateTime.Now;
System.Windows.Forms (12)
parent\parent\parent\public\Internal\NDP\Inc\mansign2.cs (12)
412
chain.
ChainPolicy
.RevocationFlag = X509RevocationFlag.ExcludeRoot;
413
chain.
ChainPolicy
.RevocationMode = X509RevocationMode.Online;
416
chain.
ChainPolicy
.RevocationFlag = X509RevocationFlag.EndCertificateOnly;
420
chain.
ChainPolicy
.RevocationFlag = X509RevocationFlag.EntireChain;
425
chain.
ChainPolicy
.RevocationMode = X509RevocationMode.NoCheck;
428
chain.
ChainPolicy
.VerificationTime = verificationTime; // local time
431
chain.
ChainPolicy
.ApplicationPolicy.Add(new Oid(Win32.szOID_KP_LIFETIME_SIGNING));
434
chain.
ChainPolicy
.UrlRetrievalTimeout = new TimeSpan(0, 1, 0);
435
chain.
ChainPolicy
.VerificationFlags = X509VerificationFlags.NoFlag; // don't ignore anything
982
chain.
ChainPolicy
.ExtraStore.AddRange(signedCms.Certificates);
983
chain.
ChainPolicy
.VerificationTime = time.SigningTime;
984
chain.
ChainPolicy
.ApplicationPolicy.Add(new Oid(Win32.szOID_PKIX_KP_TIMESTAMP_SIGNING));