Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

ClaimsIdentity Constructor (String^)

.NET Framework (current version)
 

Initializes a new instance of the ClaimsIdentity class with an empty claims collection and the specified authentication type.

Namespace:   System.Security.Claims
Assembly:  mscorlib (in mscorlib.dll)

public:
ClaimsIdentity(
	String^ authenticationType
)

Parameters

authenticationType
Type: System::String^

The type of authentication used.

The following table shows initial property values for an instance of the ClaimsIdentity class.

Property

Value

Actor

null.

AuthenticationType

The value of the authenticationType parameter. If the authenticationType parameter is null or an empty string, the property is set to null.

BootstrapContext

null.

Claims

An empty collection.

IsAuthenticated

System_CAPS_noteNote

When accessed, the value of the IsAuthenticated property is returned based on the value of the AuthenticationType property.

Label

null.

Name

System_CAPS_noteNote

When accessed, the value of the Name property is returned based on the NameClaimType and the Claims collection.

NameClaimType

DefaultNameClaimType.

RoleClaimType

DefaultRoleClaimType.

Universal Windows Platform
Available since 10
.NET Framework
Available since 4.5
Return to top
Show: