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