1 instantiation of Saml2AuthorizationDecisionStatement
System.IdentityModel (1)
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (1)
3912
statement = new
Saml2AuthorizationDecisionStatement
(resource, decision);
18 references to Saml2AuthorizationDecisionStatement
System.IdentityModel (18)
System\IdentityModel\Tokens\Saml2AuthorizationDecisionStatement.cs (2)
30
/// Initializes a new instance of the <see cref="
Saml2AuthorizationDecisionStatement
"/> class from
41
/// Initializes a new instance of the <see cref="
Saml2AuthorizationDecisionStatement
"/> class from
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (16)
1994
protected virtual void ProcessAuthorizationDecisionStatement(
Saml2AuthorizationDecisionStatement
statement, ClaimsIdentity subject, string issuer)
2024
Saml2AuthorizationDecisionStatement
authzStatement = statement as
Saml2AuthorizationDecisionStatement
;
2758
|| statement is
Saml2AuthorizationDecisionStatement
)
2862
|| statement is
Saml2AuthorizationDecisionStatement
)
3826
/// <param name="reader">A <see cref="XmlReader"/> positioned at a <see cref="
Saml2AuthorizationDecisionStatement
"/> element.</param>
3827
/// <returns>A <see cref="
Saml2AuthorizationDecisionStatement
"/> instance.</returns>
3828
protected virtual
Saml2AuthorizationDecisionStatement
ReadAuthorizationDecisionStatement(XmlReader reader)
3849
Saml2AuthorizationDecisionStatement
statement;
3899
resource =
Saml2AuthorizationDecisionStatement
.EmptyResource;
3952
/// <param name="writer">A <see cref="XmlWriter"/> to serialize the <see cref="
Saml2AuthorizationDecisionStatement
"/>.</param>
3953
/// <param name="data">The <see cref="
Saml2AuthorizationDecisionStatement
"/> to serialize.</param>
3954
protected virtual void WriteAuthorizationDecisionStatement(XmlWriter writer,
Saml2AuthorizationDecisionStatement
data)
3981
writer.WriteAttributeString(Saml2Constants.Attributes.Resource, data.Resource.Equals(
Saml2AuthorizationDecisionStatement
.EmptyResource) ? data.Resource.ToString() : data.Resource.AbsoluteUri);
4963
Saml2AuthorizationDecisionStatement
authzStatement = data as
Saml2AuthorizationDecisionStatement
;