Share via


SamlAction Constructors

Definition

Overloads

SamlAction(String)

Constructs an instance of SamlAction class.

SamlAction(String, Uri)

Constructs an instance of SamlAction class.

SamlAction(String)

Constructs an instance of SamlAction class.

public SamlAction (string value);
new Microsoft.IdentityModel.Tokens.Saml.SamlAction : string -> Microsoft.IdentityModel.Tokens.Saml.SamlAction
Public Sub New (value As String)

Parameters

value
String

Action value represented by this class.

Exceptions

if value is null or empty.

Applies to

SamlAction(String, Uri)

Constructs an instance of SamlAction class.

public SamlAction (string value, Uri namespace);
new Microsoft.IdentityModel.Tokens.Saml.SamlAction : string * Uri -> Microsoft.IdentityModel.Tokens.Saml.SamlAction
Public Sub New (value As String, namespace As Uri)

Parameters

value
String

Value represented by this class.

namespace
Uri

Namespace in which the action is interpreted.

Exceptions

if namespace is not an absolute Uri.

Applies to