3 instantiations of Saml2AssertionKeyIdentifierClause
System.IdentityModel (3)
System\IdentityModel\Tokens\Saml2SecurityToken.cs (2)
152
return new
Saml2AssertionKeyIdentifierClause
(this.assertion.Id.Value) as T;
156
return new WrappedSaml2AssertionKeyIdentifierClause(new
Saml2AssertionKeyIdentifierClause
(this.assertion.Id.Value)) as T;
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (1)
600
return new
Saml2AssertionKeyIdentifierClause
(id, nonce, length);
14 references to Saml2AssertionKeyIdentifierClause
System.IdentityModel (14)
System\IdentityModel\Tokens\Saml2AssertionKeyIdentifierClause.cs (2)
68
Saml2AssertionKeyIdentifierClause
saml2Clause = keyIdentifierClause as
Saml2AssertionKeyIdentifierClause
;
System\IdentityModel\Tokens\Saml2SecurityToken.cs (3)
128
return
Saml2AssertionKeyIdentifierClause
.Matches(this.Id, keyIdentifierClause)
139
return (typeof(T) == typeof(
Saml2AssertionKeyIdentifierClause
))
150
if (typeof(T) == typeof(
Saml2AssertionKeyIdentifierClause
))
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (4)
242
return token.CreateKeyIdentifierClause<
Saml2AssertionKeyIdentifierClause
>();
492
return (securityKeyIdentifierClause is
Saml2AssertionKeyIdentifierClause
) ||
671
Saml2AssertionKeyIdentifierClause
samlClause = null;
680
samlClause = securityKeyIdentifierClause as
Saml2AssertionKeyIdentifierClause
;
System\IdentityModel\Tokens\WrappedSaml2AssertionKeyIdentifierClause.cs (5)
19
private
Saml2AssertionKeyIdentifierClause
clause;
24
/// <param name="clause">A <see cref="
Saml2AssertionKeyIdentifierClause
"/> to be wrapped.</param>
25
public WrappedSaml2AssertionKeyIdentifierClause(
Saml2AssertionKeyIdentifierClause
clause)
44
/// Gets the wrapped <see cref="
Saml2AssertionKeyIdentifierClause
" />.
46
public
Saml2AssertionKeyIdentifierClause
WrappedClause