2 instantiations of Saml2AuthenticationStatement
System.IdentityModel (2)
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (2)
1379
Saml2AuthenticationStatement authnStatement = new
Saml2AuthenticationStatement
(authCtx, authInstantTime);
3749
Saml2AuthenticationStatement authnStatement = new
Saml2AuthenticationStatement
(authnContext, authnInstant);
20 references to Saml2AuthenticationStatement
System.IdentityModel (20)
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (20)
1304
Saml2AuthenticationStatement
authenticationStatement = this.CreateAuthenticationStatement(tokenDescriptor.AuthenticationInfo, tokenDescriptor);
1326
protected virtual
Saml2AuthenticationStatement
CreateAuthenticationStatement(AuthenticationInformation authInfo, SecurityTokenDescriptor tokenDescriptor)
1379
Saml2AuthenticationStatement
authnStatement = new Saml2AuthenticationStatement(authCtx, authInstantTime);
1963
protected virtual void ProcessAuthenticationStatement(
Saml2AuthenticationStatement
statement, ClaimsIdentity subject, string issuer)
2006
Collection<
Saml2AuthenticationStatement
> authnStatements = new Collection<
Saml2AuthenticationStatement
>();
2017
Saml2AuthenticationStatement
authnStatement = statement as
Saml2AuthenticationStatement
;
2034
foreach (
Saml2AuthenticationStatement
authStatement in authnStatements)
2756
if (statement is
Saml2AuthenticationStatement
2860
if (statement is
Saml2AuthenticationStatement
3670
/// <param name="reader">A <see cref="XmlReader"/> positioned at a <see cref="
Saml2AuthenticationStatement
"/> element.</param>
3671
/// <returns>A <see cref="
Saml2AuthenticationStatement
"/> instance.</returns>
3672
protected virtual
Saml2AuthenticationStatement
ReadAuthenticationStatement(XmlReader reader)
3749
Saml2AuthenticationStatement
authnStatement = new Saml2AuthenticationStatement(authnContext, authnInstant);
3776
/// <param name="writer">A <see cref="XmlWriter"/> to serialize the <see cref="
Saml2AuthenticationStatement
"/>.</param>
3777
/// <param name="data">The <see cref="
Saml2AuthenticationStatement
"/> to serialize.</param>
3778
protected virtual void WriteAuthenticationStatement(XmlWriter writer,
Saml2AuthenticationStatement
data)
4956
Saml2AuthenticationStatement
authnStatement = data as
Saml2AuthenticationStatement
;