1 instantiation of Saml2Action
System.IdentityModel (1)
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (1)
2391
return new
Saml2Action
(reader.ReadElementString(), actionNamespace);
14 references to Saml2Action
System.IdentityModel (14)
System\IdentityModel\Tokens\Saml2AuthorizationDecisionStatement.cs (7)
24
private Collection<
Saml2Action
> actions = new Collection<
Saml2Action
>();
46
/// <param name="actions">Collection of <see cref="
Saml2Action
"/> specifications.</param>
47
public Saml2AuthorizationDecisionStatement(Uri resource, SamlAccessDecision decision, IEnumerable<
Saml2Action
> actions)
71
foreach (
Saml2Action
action in actions)
79
/// Gets of set the set of <see cref="
Saml2Action
"/> authorized to be performed on the specified
82
public Collection<
Saml2Action
> Actions
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (7)
2344
/// <param name="reader">A <see cref="XmlReader"/> positioned at a <see cref="
Saml2Action
"/> element.</param>
2345
/// <returns>A <see cref="
Saml2Action
"/> instance.</returns>
2346
protected virtual
Saml2Action
ReadAction(XmlReader reader)
2413
/// <param name="writer">A <see cref="XmlWriter"/> to serialize the <see cref="
Saml2Action
"/>.</param>
2414
/// <param name="data">The <see cref="
Saml2Action
"/> to serialize.</param>
2415
protected virtual void WriteAction(XmlWriter writer,
Saml2Action
data)
3984
foreach (
Saml2Action
action in data.Actions)