SamlSubject Constructors

Definition

Overloads

SamlSubject()

Initialize an instance of SamlSubject.

SamlSubject(String, String, String)

Initialize an instance of SamlSubject.

SamlSubject(String, String, String, IEnumerable<String>, String)

Initialize an instance of SamlSubject.

SamlSubject()

Initialize an instance of SamlSubject.

public SamlSubject ();
Public Sub New ()

Applies to

SamlSubject(String, String, String)

Initialize an instance of SamlSubject.

public SamlSubject (string nameFormat, string nameQualifier, string name);
new Microsoft.IdentityModel.Tokens.Saml.SamlSubject : string * string * string -> Microsoft.IdentityModel.Tokens.Saml.SamlSubject
Public Sub New (nameFormat As String, nameQualifier As String, name As String)

Parameters

nameFormat
String

The format of the subject.

nameQualifier
String

The NameIdentifier of the subject.

name
String

The name of the subject.

Applies to

SamlSubject(String, String, String, IEnumerable<String>, String)

Initialize an instance of SamlSubject.

public SamlSubject (string nameFormat, string nameQualifier, string name, System.Collections.Generic.IEnumerable<string> confirmations, string confirmationData);
new Microsoft.IdentityModel.Tokens.Saml.SamlSubject : string * string * string * seq<string> * string -> Microsoft.IdentityModel.Tokens.Saml.SamlSubject
Public Sub New (nameFormat As String, nameQualifier As String, name As String, confirmations As IEnumerable(Of String), confirmationData As String)

Parameters

nameFormat
String

The format of the subject.

nameQualifier
String

The NameIdentifier of the subject.

name
String

The name of the subject.

confirmationData
String

The confirmation data contained in the subject.

Applies to