14 references to KnownCertificates
System.ServiceModel (14)
System\ServiceModel\Administration\ServiceInstanceProvider.cs (2)
170
if (specificBehavior.IssuedTokenAuthentication != null && specificBehavior.IssuedTokenAuthentication.
KnownCertificates
!= null)
177
foreach (X509Certificate2 certificate in specificBehavior.IssuedTokenAuthentication.
KnownCertificates
)
System\ServiceModel\Configuration\IssuedTokenServiceElement.cs (1)
184
issuedToken.
KnownCertificates
.Add(SecurityUtils.GetCertificateFromStore(src.StoreName, src.StoreLocation, src.X509FindType, src.FindValue, null));
System\ServiceModel\Description\ServiceCredentials.cs (3)
252
if (this.IssuedTokenAuthentication != null && this.IssuedTokenAuthentication.
KnownCertificates
!= null && this.IssuedTokenAuthentication.
KnownCertificates
.Count > 0)
254
this.IdentityConfiguration.KnownIssuerCertificates = new List<X509Certificate2> (this.IssuedTokenAuthentication.
KnownCertificates
);
System\ServiceModel\Security\FederatedSecurityTokenManager.cs (4)
426
if ( ( base.ServiceCredentials.IssuedTokenAuthentication.
KnownCertificates
!= null ) && ( base.ServiceCredentials.IssuedTokenAuthentication.
KnownCertificates
.Count > 0 ) )
428
for ( int i = 0; i < base.ServiceCredentials.IssuedTokenAuthentication.
KnownCertificates
.Count; ++i )
430
outOfBandTokens.Add( new X509SecurityToken( base.ServiceCredentials.IssuedTokenAuthentication.
KnownCertificates
[i]));
System\ServiceModel\Security\ServiceCredentialsSecurityTokenManager.cs (4)
258
if ((parent.IssuedTokenAuthentication.
KnownCertificates
!= null) && (parent.IssuedTokenAuthentication.
KnownCertificates
.Count > 0))
260
for (int i = 0; i < parent.IssuedTokenAuthentication.
KnownCertificates
.Count; ++i)
262
outOfBandTokens.Add(new X509SecurityToken(parent.IssuedTokenAuthentication.
KnownCertificates
[i]));