X509CertificateValidationMode 枚举

定义

一个列出验证证书方法的枚举。

public enum class X509CertificateValidationMode
public enum X509CertificateValidationMode
type X509CertificateValidationMode = 
Public Enum X509CertificateValidationMode
继承
X509CertificateValidationMode

字段

ChainTrust 2

如果该链在受信任的根存储区生成证书颁发机构,则证书有效。

Custom 4

用户必须插入自定义 X509CertificateValidator 以验证证书。

None 0

未执行任何证书验证。

PeerOrChainTrust 3

如果证书位于被信任的人的存储区或该链在受信任的根存储区生成证书颁发机构,则证书有效。

PeerTrust 1

如果证书位于被信任的人的存储区中,则有效。

示例

          ChannelFactory<ISimpleChannel> cf =
              new ChannelFactory<ISimpleChannel>();
          cf.Credentials.ClientCertificate.SetCertificate(
              StoreLocation.CurrentUser, StoreName.My,
              X509FindType.FindByThumbprint,
"37 28 05 09 22 81 07 08 a0 cd 2a af dd c3 83 cd c3 3b 8f 9d");
          cf.Credentials.ServiceCertificate.SetDefaultCertificate(
              StoreLocation.CurrentUser,
              StoreName.TrustedPeople,
              X509FindType.FindByThumbprint,
"33 93 68 cc 7c 75 80 24 a2 80 9f 45 8c 81 fa 92 ad 5b 04 39");
          cf.Credentials.ServiceCertificate.Authentication.CertificateValidationMode
              = X509CertificateValidationMode.PeerOrChainTrust;

适用于