SamlAttribute Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
- values
- IEnumerable<String>
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.