2 instantiations of Saml2AttributeStatement
System.IdentityModel (2)
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (2)
1158
return new
Saml2AttributeStatement
(collectedAttributes);
3320
Saml2AttributeStatement statement = new
Saml2AttributeStatement
();
18 references to Saml2AttributeStatement
System.IdentityModel (18)
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (18)
1117
/// Creates <see cref="
Saml2AttributeStatement
"/> from a <see cref="SecurityTokenDescriptor"/> and a <see cref="ClaimsIdentity"/>
1122
/// <param name="tokenDescriptor">The <see cref="SecurityTokenDescriptor"/> that contains information on building the <see cref="
Saml2AttributeStatement
"/>.</param>
1124
protected virtual
Saml2AttributeStatement
CreateAttributeStatement(ClaimsIdentity subject, SecurityTokenDescriptor tokenDescriptor)
1298
Saml2AttributeStatement
attributeStatement = this.CreateAttributeStatement(tokenDescriptor.Subject, tokenDescriptor);
1816
protected virtual void ProcessAttributeStatement(
Saml2AttributeStatement
statement, ClaimsIdentity subject, string issuer)
2010
Saml2AttributeStatement
attrStatement = statement as
Saml2AttributeStatement
;
2757
|| statement is
Saml2AttributeStatement
2861
|| statement is
Saml2AttributeStatement
3283
/// <param name="reader">A <see cref="XmlReader"/> positioned at a <see cref="
Saml2AttributeStatement
"/> element.</param>
3284
/// <returns>A <see cref="
Saml2AttributeStatement
"/> instance.</returns>
3285
protected virtual
Saml2AttributeStatement
ReadAttributeStatement(XmlReader reader)
3320
Saml2AttributeStatement
statement = new Saml2AttributeStatement();
3370
/// <param name="writer">A <see cref="XmlWriter"/> to serialize the <see cref="
Saml2AttributeStatement
"/>.</param>
3371
/// <param name="data">The <see cref="
Saml2AttributeStatement
"/> to serialize.</param>
3372
protected virtual void WriteAttributeStatement(XmlWriter writer,
Saml2AttributeStatement
data)
4949
Saml2AttributeStatement
attributeStatement = data as
Saml2AttributeStatement
;