Freigeben über


CustomJsonClaimAction Konstruktoren

Definition

Überlädt

CustomJsonClaimAction(String, String, Func<JObject,String>)

Erstellt eine neue CustomJsonClaimAction.

CustomJsonClaimAction(String, String, Func<JsonElement,String>)

Erstellt eine neue CustomJsonClaimAction.

CustomJsonClaimAction(String, String, Func<JObject,String>)

Quelle:
CustomJsonClaimAction.cs
Quelle:
CustomJsonClaimAction.cs

Erstellt eine neue CustomJsonClaimAction.

public:
 CustomJsonClaimAction(System::String ^ claimType, System::String ^ valueType, Func<Newtonsoft::Json::Linq::JObject ^, System::String ^> ^ resolver);
public CustomJsonClaimAction (string claimType, string valueType, Func<Newtonsoft.Json.Linq.JObject,string> resolver);
new Microsoft.AspNetCore.Authentication.OAuth.Claims.CustomJsonClaimAction : string * string * Func<Newtonsoft.Json.Linq.JObject, string> -> Microsoft.AspNetCore.Authentication.OAuth.Claims.CustomJsonClaimAction
Public Sub New (claimType As String, valueType As String, resolver As Func(Of JObject, String))

Parameter

claimType
String

Der Wert, der für Claim.Type beim Erstellen eines Anspruchs verwendet werden soll.

valueType
String

Der Wert, der für Claim.ValueType beim Erstellen eines Anspruchs verwendet werden soll.

resolver
Func<Newtonsoft.Json.Linq.JObject,String>

Der Func, der aufgerufen wird, um den Wert aus den angegebenen JSON-Benutzerdaten auszuwählen.

Gilt für:

CustomJsonClaimAction(String, String, Func<JsonElement,String>)

Quelle:
CustomJsonClaimAction.cs

Erstellt eine neue CustomJsonClaimAction.

public:
 CustomJsonClaimAction(System::String ^ claimType, System::String ^ valueType, Func<System::Text::Json::JsonElement, System::String ^> ^ resolver);
public CustomJsonClaimAction (string claimType, string valueType, Func<System.Text.Json.JsonElement,string> resolver);
public CustomJsonClaimAction (string claimType, string valueType, Func<System.Text.Json.JsonElement,string?> resolver);
new Microsoft.AspNetCore.Authentication.OAuth.Claims.CustomJsonClaimAction : string * string * Func<System.Text.Json.JsonElement, string> -> Microsoft.AspNetCore.Authentication.OAuth.Claims.CustomJsonClaimAction
Public Sub New (claimType As String, valueType As String, resolver As Func(Of JsonElement, String))

Parameter

claimType
String

Der Wert, der für Claim.Type beim Erstellen eines Anspruchs verwendet werden soll.

valueType
String

Der Wert, der für Claim.ValueType beim Erstellen eines Anspruchs verwendet werden soll.

resolver
Func<JsonElement,String>

Der Func, der aufgerufen wird, um einen Wert aus den angegebenen JSON-Benutzerdaten auszuwählen.

Gilt für: