1 type derived from SamlAssertionKeyIdentifierClause
System.IdentityModel (1)
System\IdentityModel\Tokens\WrappedSaml2AssertionKeyIdentifierClause.cs (1)
17
internal class WrappedSaml2AssertionKeyIdentifierClause :
SamlAssertionKeyIdentifierClause
3 instantiations of SamlAssertionKeyIdentifierClause
System.IdentityModel (2)
System\IdentityModel\Tokens\SamlSecurityToken.cs (1)
102
return new
SamlAssertionKeyIdentifierClause
(this.Id) as T;
System\IdentityModel\Tokens\WSSecurityJan2004.cs (1)
652
return new
SamlAssertionKeyIdentifierClause
(id, derivationNone, derivationLength, valueType, tokenType, binding, location, authorityKind);
System.ServiceModel (1)
System\ServiceModel\Security\WSSecurityJan2004.cs (1)
319
return new
SamlAssertionKeyIdentifierClause
(assertionId);
18 references to SamlAssertionKeyIdentifierClause
System.IdentityModel (16)
System\IdentityModel\Tokens\Saml2AssertionKeyIdentifierClause.cs (2)
83
SamlAssertionKeyIdentifierClause
wcfClause = keyIdentifierClause as
SamlAssertionKeyIdentifierClause
;
System\IdentityModel\Tokens\Saml2SecurityToken.cs (1)
154
else if (typeof(T) == typeof(
SamlAssertionKeyIdentifierClause
))
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (1)
234
/// <returns>A <see cref="
SamlAssertionKeyIdentifierClause
"/> instance.</returns>
System\IdentityModel\Tokens\SamlAssertionKeyIdentifierClause.cs (2)
75
SamlAssertionKeyIdentifierClause
that = keyIdentifierClause as
SamlAssertionKeyIdentifierClause
;
System\IdentityModel\Tokens\SamlSecurityToken.cs (4)
93
if (typeof(T) == typeof(
SamlAssertionKeyIdentifierClause
))
101
if (typeof(T) == typeof(
SamlAssertionKeyIdentifierClause
))
109
SamlAssertionKeyIdentifierClause
samlKeyIdentifierClause = keyIdentifierClause as
SamlAssertionKeyIdentifierClause
;
System\IdentityModel\Tokens\SamlSecurityTokenHandler.cs (1)
254
return token.CreateKeyIdentifierClause<
SamlAssertionKeyIdentifierClause
>();
System\IdentityModel\Tokens\WSSecurityJan2004.cs (5)
658
if (typeof(
SamlAssertionKeyIdentifierClause
).IsAssignableFrom(clause.GetType()))
660
SamlAssertionKeyIdentifierClause
samlclause = clause as
SamlAssertionKeyIdentifierClause
;
671
SamlAssertionKeyIdentifierClause
samlClause = clause as
SamlAssertionKeyIdentifierClause
;
System.ServiceModel (2)
System\ServiceModel\Security\Tokens\IssuedSecurityTokenParameters.cs (2)
237
return this.CreateKeyIdentifierClause<
SamlAssertionKeyIdentifierClause
,
SamlAssertionKeyIdentifierClause
>(token, referenceStyle);