本文整理汇总了VB.NET中System.ServiceModel.Security.IssuedTokenServiceCredential.TrustedStoreLocation属性的典型用法代码示例。如果您正苦于以下问题:VB.NET IssuedTokenServiceCredential.TrustedStoreLocation属性的具体用法?VB.NET IssuedTokenServiceCredential.TrustedStoreLocation怎么用?VB.NET IssuedTokenServiceCredential.TrustedStoreLocation使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。
在下文中一共展示了IssuedTokenServiceCredential.TrustedStoreLocation属性的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的VB.NET代码示例。
示例1: ConfigureIssuedTokenServiceCredentials
' This method configures the IssuedTokenAuthentication property of a ServiceHost.
Public Shared Sub ConfigureIssuedTokenServiceCredentials( _
ByVal sh As ServiceHost, _
ByVal allowCardspaceTokens As Boolean, _
ByVal knownissuers As IList(Of X509Certificate2), _
ByVal certMode As X509CertificateValidationMode, _
ByVal revocationMode As X509RevocationMode, _
ByVal ser As SamlSerializer _
)
' Allow CardSpace tokens.
sh.Credentials.IssuedTokenAuthentication.AllowUntrustedRsaIssuers = _
allowCardspaceTokens
' Set up known issuer certificates.
Dim cert As X509Certificate2
For Each cert In knownissuers
sh.Credentials.IssuedTokenAuthentication.KnownCertificates.Add(cert)
Next cert
' Set issuer certificate validation and revocation checking modes.
sh.Credentials.IssuedTokenAuthentication.CertificateValidationMode = _
X509CertificateValidationMode.PeerOrChainTrust
sh.Credentials.IssuedTokenAuthentication.RevocationMode = _
X509RevocationMode.Online
' Set the SamlSerializer, if one is specified.
If Not (ser Is Nothing) Then
sh.Credentials.IssuedTokenAuthentication.SamlSerializer = ser
End If
End Sub
开发者ID:VB.NET开发者,项目名称:System.ServiceModel.Security,代码行数:29,代码来源:IssuedTokenServiceCredential.TrustedStoreLocation