CustomJsonClaimAction Konstruktory
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Przeciążenia
CustomJsonClaimAction(String, String, Func<JObject,String>) |
Tworzy nowy element CustomJsonClaimAction. |
CustomJsonClaimAction(String, String, Func<JsonElement,String>) |
Tworzy nowy element CustomJsonClaimAction. |
CustomJsonClaimAction(String, String, Func<JObject,String>)
- Źródło:
- CustomJsonClaimAction.cs
- Źródło:
- CustomJsonClaimAction.cs
Tworzy nowy element 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))
Parametry
- claimType
- String
Wartość, która ma być używana dla obiektu Claim.Type podczas tworzenia oświadczenia.
- valueType
- String
Wartość, która ma być używana dla obiektu Claim.ValueType podczas tworzenia oświadczenia.
Func, który zostanie wywołany, aby wybrać wartość z danych użytkownika json.
Dotyczy
CustomJsonClaimAction(String, String, Func<JsonElement,String>)
- Źródło:
- CustomJsonClaimAction.cs
Tworzy nowy element 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))
Parametry
- claimType
- String
Wartość, która ma być używana dla obiektu Claim.Type podczas tworzenia oświadczenia.
- valueType
- String
Wartość, która ma być używana dla obiektu Claim.ValueType podczas tworzenia oświadczenia.
- resolver
- Func<JsonElement,String>
Func, który zostanie wywołany, aby wybrać wartość z danych użytkownika JSON.