Condividi tramite


JsonMetadataServices.GetNullableConverter<T> Metodo

Definizione

Crea JsonConverter<T> un'istanza di che converte T?? i valori.

public:
generic <typename T>
 where T : value class static System::Text::Json::Serialization::JsonConverter<Nullable<T>> ^ GetNullableConverter(System::Text::Json::Serialization::Metadata::JsonTypeInfo<T> ^ underlyingTypeInfo);
public static System.Text.Json.Serialization.JsonConverter<T?> GetNullableConverter<T> (System.Text.Json.Serialization.Metadata.JsonTypeInfo<T> underlyingTypeInfo) where T : struct;
static member GetNullableConverter : System.Text.Json.Serialization.Metadata.JsonTypeInfo<'T (requires 'T : struct)> -> System.Text.Json.Serialization.JsonConverter<Nullable<'T>> (requires 'T : struct)
Public Shared Function GetNullableConverter(Of T As Structure) (underlyingTypeInfo As JsonTypeInfo(Of T)) As JsonConverter(Of Nullable(Of T))

Parametri di tipo

T

Definizione generica per il tipo nullable sottostante.

Parametri

underlyingTypeInfo
JsonTypeInfo<T>

Metadati di serializzazione per il tipo nullable sottostante.

Restituisce

JsonConverter<Nullable<T>>

Si applica a