4 instantiations of SamlAuthenticationStatement
System.IdentityModel (4)
System\IdentityModel\Tokens\SamlSecurityTokenHandler.cs (3)
396
return new
SamlAuthenticationStatement
(samlSubject, DenormalizeAuthenticationType(authenticationMethod), authInstantTime, null, null, null);
400
return new
SamlAuthenticationStatement
(samlSubject, DenormalizeAuthenticationType(authenticationMethod), authInstantTime, authInfo.DnsName, authInfo.Address, null);
2855
SamlAuthenticationStatement authnStatement = new
SamlAuthenticationStatement
();
System\IdentityModel\Tokens\SamlSerializer.cs (1)
137
SamlAuthenticationStatement authStatement = new
SamlAuthenticationStatement
();
17 references to SamlAuthenticationStatement
System.IdentityModel (17)
System\IdentityModel\Tokens\SamlConstants.cs (1)
45
/// Known values for <see cref="System.IdentityModel.Tokens.
SamlAuthenticationStatement
"/>
System\IdentityModel\Tokens\SamlSecurityTokenHandler.cs (15)
317
SamlAuthenticationStatement
authnStatement = CreateAuthenticationStatement(subject, tokenDescriptor.AuthenticationInfo, tokenDescriptor);
335
protected virtual
SamlAuthenticationStatement
CreateAuthenticationStatement(
1180
Collection<
SamlAuthenticationStatement
> authStatementCollection = new Collection<
SamlAuthenticationStatement
>();
1196
SamlAuthenticationStatement
authenStatement = samlStatement as
SamlAuthenticationStatement
;
1218
foreach (
SamlAuthenticationStatement
authStatement in authStatementCollection)
1389
protected virtual void ProcessAuthenticationStatement(
SamlAuthenticationStatement
samlStatement, ClaimsIdentity subject, string issuer)
2270
SamlAuthenticationStatement
authnStatement = statement as
SamlAuthenticationStatement
;
2843
protected virtual
SamlAuthenticationStatement
ReadAuthenticationStatement(XmlReader reader)
2855
SamlAuthenticationStatement
authnStatement = new SamlAuthenticationStatement();
2926
protected virtual void WriteAuthenticationStatement(XmlWriter writer,
SamlAuthenticationStatement
statement)
3530
if (statement is
SamlAuthenticationStatement
)
3532
subjects.Add((statement as
SamlAuthenticationStatement
).SamlSubject);
System\IdentityModel\Tokens\SamlSerializer.cs (1)
137
SamlAuthenticationStatement
authStatement = new SamlAuthenticationStatement();