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