2 instantiations of Saml2AuthenticationStatement
System.IdentityModel (2)
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (2)
1379Saml2AuthenticationStatement authnStatement = new Saml2AuthenticationStatement(authCtx, authInstantTime); 3749Saml2AuthenticationStatement authnStatement = new Saml2AuthenticationStatement(authnContext, authnInstant);
20 references to Saml2AuthenticationStatement
System.IdentityModel (20)
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (20)
1304Saml2AuthenticationStatement authenticationStatement = this.CreateAuthenticationStatement(tokenDescriptor.AuthenticationInfo, tokenDescriptor); 1326protected virtual Saml2AuthenticationStatement CreateAuthenticationStatement(AuthenticationInformation authInfo, SecurityTokenDescriptor tokenDescriptor) 1379Saml2AuthenticationStatement authnStatement = new Saml2AuthenticationStatement(authCtx, authInstantTime); 1963protected virtual void ProcessAuthenticationStatement(Saml2AuthenticationStatement statement, ClaimsIdentity subject, string issuer) 2006Collection<Saml2AuthenticationStatement> authnStatements = new Collection<Saml2AuthenticationStatement>(); 2017Saml2AuthenticationStatement authnStatement = statement as Saml2AuthenticationStatement; 2034foreach (Saml2AuthenticationStatement authStatement in authnStatements) 2756if (statement is Saml2AuthenticationStatement 2860if (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> 3672protected virtual Saml2AuthenticationStatement ReadAuthenticationStatement(XmlReader reader) 3749Saml2AuthenticationStatement 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> 3778protected virtual void WriteAuthenticationStatement(XmlWriter writer, Saml2AuthenticationStatement data) 4956Saml2AuthenticationStatement authnStatement = data as Saml2AuthenticationStatement;