Compartir a través de


CustomJsonClaimAction Constructores

Definición

Sobrecargas

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

Crea un nuevo CustomJsonClaimAction.

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

Crea un nuevo CustomJsonClaimAction.

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

Source:
CustomJsonClaimAction.cs
Source:
CustomJsonClaimAction.cs

Crea un nuevo 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))

Parámetros

claimType
String

Valor que se va a usar para Claim.Type al crear una notificación.

valueType
String

Valor que se va a usar para Claim.ValueType al crear una notificación.

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

Func al que se llamará para seleccionar el valor de los datos de usuario json especificados.

Se aplica a

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

Source:
CustomJsonClaimAction.cs

Crea un nuevo 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))

Parámetros

claimType
String

Valor que se va a usar para Claim.Type al crear una notificación.

valueType
String

Valor que se va a usar para Claim.ValueType al crear una notificación.

resolver
Func<JsonElement,String>

Func al que se llamará para seleccionar el valor de los datos de usuario JSON especificados.

Se aplica a