1 instantiation of Saml2Action
System.IdentityModel (1)
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (1)
2391return new Saml2Action(reader.ReadElementString(), actionNamespace);
14 references to Saml2Action
System.IdentityModel (14)
System\IdentityModel\Tokens\Saml2AuthorizationDecisionStatement.cs (7)
24private Collection<Saml2Action> actions = new Collection<Saml2Action>(); 46/// <param name="actions">Collection of <see cref="Saml2Action"/> specifications.</param> 47public Saml2AuthorizationDecisionStatement(Uri resource, SamlAccessDecision decision, IEnumerable<Saml2Action> actions) 71foreach (Saml2Action action in actions) 79/// Gets of set the set of <see cref="Saml2Action"/> authorized to be performed on the specified 82public 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> 2346protected 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> 2415protected virtual void WriteAction(XmlWriter writer, Saml2Action data) 3984foreach (Saml2Action action in data.Actions)