2 instantiations of Saml2AuthenticationContext
System.IdentityModel (2)
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (2)
1377Saml2AuthenticationContext authCtx = new Saml2AuthenticationContext(saml2AuthenticationClass); 3588Saml2AuthenticationContext authnContext = new Saml2AuthenticationContext(classRef, declRef);
14 references to Saml2AuthenticationContext
System.IdentityModel (14)
System\IdentityModel\Tokens\Saml2AuthenticationStatement.cs (5)
16private Saml2AuthenticationContext authnContext; 26public Saml2AuthenticationStatement(Saml2AuthenticationContext authenticationContext) 36public Saml2AuthenticationStatement(Saml2AuthenticationContext authenticationContext, DateTime authenticationInstant) 48/// Gets or sets the <see cref="Saml2AuthenticationContext"/> used by the authenticating authority up to and including 51public Saml2AuthenticationContext AuthenticationContext
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (9)
1377Saml2AuthenticationContext authCtx = new Saml2AuthenticationContext(saml2AuthenticationClass); 3527/// <param name="reader">A <see cref="XmlReader"/> positioned at a <see cref="Saml2AuthenticationContext"/> element.</param> 3528/// <returns>A <see cref="Saml2AuthenticationContext"/> instance.</returns> 3529protected virtual Saml2AuthenticationContext ReadAuthenticationContext(XmlReader reader) 3588Saml2AuthenticationContext authnContext = new Saml2AuthenticationContext(classRef, declRef); 3620/// <param name="writer">A <see cref="XmlWriter"/> to serialize the <see cref="Saml2AuthenticationContext"/>.</param> 3621/// <param name="data">The <see cref="Saml2AuthenticationContext"/> to serialize.</param> 3622protected virtual void WriteAuthenticationContext(XmlWriter writer, Saml2AuthenticationContext data) 3695Saml2AuthenticationContext authnContext;