JsonMetadataServices.CreateDictionaryInfo<TCollection,TKey,TValue> Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Cria metadados para tipos atribuíveis a Dictionary<TKey,TValue>.
public:
generic <typename TCollection, typename TKey, typename TValue>
where TCollection : System::Collections::Generic::Dictionary<TKey, TValue> static System::Text::Json::Serialization::Metadata::JsonTypeInfo<TCollection> ^ CreateDictionaryInfo(System::Text::Json::JsonSerializerOptions ^ options, System::Text::Json::Serialization::Metadata::JsonCollectionInfoValues<TCollection> ^ collectionInfo);
public static System.Text.Json.Serialization.Metadata.JsonTypeInfo<TCollection> CreateDictionaryInfo<TCollection,TKey,TValue> (System.Text.Json.JsonSerializerOptions options, System.Text.Json.Serialization.Metadata.JsonCollectionInfoValues<TCollection> collectionInfo) where TCollection : System.Collections.Generic.Dictionary<TKey,TValue>;
static member CreateDictionaryInfo : System.Text.Json.JsonSerializerOptions * System.Text.Json.Serialization.Metadata.JsonCollectionInfoValues<'Collection (requires 'Collection :> System.Collections.Generic.Dictionary<'Key, 'Value>)> -> System.Text.Json.Serialization.Metadata.JsonTypeInfo<'Collection (requires 'Collection :> System.Collections.Generic.Dictionary<'Key, 'Value>)> (requires 'Collection :> System.Collections.Generic.Dictionary<'Key, 'Value>)
Public Shared Function CreateDictionaryInfo(Of TCollection As Dictionary(Of TKey, TValue), TKey As Dictionary(Of TKey, TValue), TValue As Dictionary(Of TKey, TValue)) (options As JsonSerializerOptions, collectionInfo As JsonCollectionInfoValues(Of TCollection)) As JsonTypeInfo(Of TCollection)
Parâmetros de tipo
- TCollection
A definição genérica do tipo.
- TKey
A definição genérica do tipo de chave.
- TValue
A definição genérica do tipo de valor.
Parâmetros
- options
- JsonSerializerOptions
O JsonSerializerOptions a ser usado para serialização e desserialização.
- collectionInfo
- JsonCollectionInfoValues<TCollection>
Fornece metadados de serialização sobre o tipo de coleção.
Retornos
- JsonTypeInfo<TCollection>
Metadados de serialização para o tipo fornecido.
Comentários
Essa API é usada pela saída do gerador de origem System.Text.Json e não deve ser chamada diretamente.