Partager via


SamlAttribute Constructors

Definition

Overloads

SamlAttribute(String, String, IEnumerable<String>)

Initializes a new instance of SamlAttribute.

SamlAttribute(String, String, String)

Initializes a new instance of SamlAttributes.

SamlAttribute(String, String, IEnumerable<String>)

Initializes a new instance of SamlAttribute.

public SamlAttribute (string ns, string name, System.Collections.Generic.IEnumerable<string> values);
new Microsoft.IdentityModel.Tokens.Saml.SamlAttribute : string * string * seq<string> -> Microsoft.IdentityModel.Tokens.Saml.SamlAttribute
Public Sub New (ns As String, name As String, values As IEnumerable(Of String))

Parameters

ns
String

The namespace of the attribute.

name
String

The name of the attribute.

Exceptions

if values is null.

Applies to

SamlAttribute(String, String, String)

Initializes a new instance of SamlAttributes.

public SamlAttribute (string ns, string name, string value);
new Microsoft.IdentityModel.Tokens.Saml.SamlAttribute : string * string * string -> Microsoft.IdentityModel.Tokens.Saml.SamlAttribute
Public Sub New (ns As String, name As String, value As String)

Parameters

ns
String

The namespace of the attribute.

name
String

The name of the attribute.

value
String

The value of the attribute.

Applies to