Share via


JsonSubKeyClaimAction(String, String, String, String) Constructor

Definition

Creates a new JsonSubKeyClaimAction.

public:
 JsonSubKeyClaimAction(System::String ^ claimType, System::String ^ valueType, System::String ^ jsonKey, System::String ^ subKey);
public JsonSubKeyClaimAction (string claimType, string valueType, string jsonKey, string subKey);
new Microsoft.AspNetCore.Authentication.OAuth.Claims.JsonSubKeyClaimAction : string * string * string * string -> Microsoft.AspNetCore.Authentication.OAuth.Claims.JsonSubKeyClaimAction
Public Sub New (claimType As String, valueType As String, jsonKey As String, subKey As String)

Parameters

claimType
String

The value to use for Claim.Type when creating a Claim.

valueType
String

The value to use for Claim.ValueType when creating a Claim.

jsonKey
String

The top level key to look for in the json user data.

subKey
String

The second level key to look for in the json user data.

Applies to