Saml2Id Constructors

Definition

Overloads

Saml2Id()

Creates a new ID value based on a GUID.

Saml2Id(String)

Creates a new ID whose value is the given string.

Saml2Id()

Creates a new ID value based on a GUID.

public Saml2Id ();
Public Sub New ()

Applies to

Saml2Id(String)

Creates a new ID whose value is the given string.

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

Parameters

value
String

The Saml2 Id.

Exceptions

if value is null or empty.

if value is not a valid NCName.

Applies to