共用方式為


JsonMetadataServices.CreateIDictionaryInfo 方法

定義

多載

CreateIDictionaryInfo<TCollection,TKey,TValue>(JsonSerializerOptions, JsonCollectionInfoValues<TCollection>)

建立可指派給 IDictionary<TKey,TValue> 之型別的中繼資料。

CreateIDictionaryInfo<TCollection>(JsonSerializerOptions, JsonCollectionInfoValues<TCollection>)

建立可指派給 IDictionary 之型別的中繼資料。

CreateIDictionaryInfo<TCollection,TKey,TValue>(JsonSerializerOptions, JsonCollectionInfoValues<TCollection>)

來源:
JsonMetadataServices.Collections.cs
來源:
JsonMetadataServices.Collections.cs
來源:
JsonMetadataServices.Collections.cs

建立可指派給 IDictionary<TKey,TValue> 之型別的中繼資料。

public:
generic <typename TCollection, typename TKey, typename TValue>
 where TCollection : System::Collections::Generic::IDictionary<TKey, TValue> static System::Text::Json::Serialization::Metadata::JsonTypeInfo<TCollection> ^ CreateIDictionaryInfo(System::Text::Json::JsonSerializerOptions ^ options, System::Text::Json::Serialization::Metadata::JsonCollectionInfoValues<TCollection> ^ collectionInfo);
public static System.Text.Json.Serialization.Metadata.JsonTypeInfo<TCollection> CreateIDictionaryInfo<TCollection,TKey,TValue> (System.Text.Json.JsonSerializerOptions options, System.Text.Json.Serialization.Metadata.JsonCollectionInfoValues<TCollection> collectionInfo) where TCollection : System.Collections.Generic.IDictionary<TKey,TValue>;
static member CreateIDictionaryInfo : System.Text.Json.JsonSerializerOptions * System.Text.Json.Serialization.Metadata.JsonCollectionInfoValues<'Collection (requires 'Collection :> System.Collections.Generic.IDictionary<'Key, 'Value>)> -> System.Text.Json.Serialization.Metadata.JsonTypeInfo<'Collection (requires 'Collection :> System.Collections.Generic.IDictionary<'Key, 'Value>)> (requires 'Collection :> System.Collections.Generic.IDictionary<'Key, 'Value>)
Public Shared Function CreateIDictionaryInfo(Of TCollection As IDictionary(Of TKey, TValue), TKey As IDictionary(Of TKey, TValue), TValue As IDictionary(Of TKey, TValue)) (options As JsonSerializerOptions, collectionInfo As JsonCollectionInfoValues(Of TCollection)) As JsonTypeInfo(Of TCollection)

類型參數

TCollection

型別的泛型定義。

TKey

索引鍵類型的泛型定義。

TValue

實值型別的泛型定義。

參數

options
JsonSerializerOptions

JsonSerializerOptions要用於序列化和還原序列化的 。

collectionInfo
JsonCollectionInfoValues<TCollection>

提供有關集合類型的序列化中繼資料。

傳回

JsonTypeInfo<TCollection>

指定類型的序列化中繼資料。

備註

此 API 可供 System.Text.Json 來源產生器的輸出使用,不應直接呼叫。

適用於

CreateIDictionaryInfo<TCollection>(JsonSerializerOptions, JsonCollectionInfoValues<TCollection>)

來源:
JsonMetadataServices.Collections.cs
來源:
JsonMetadataServices.Collections.cs
來源:
JsonMetadataServices.Collections.cs

建立可指派給 IDictionary 之型別的中繼資料。

public:
generic <typename TCollection>
 where TCollection : System::Collections::IDictionary static System::Text::Json::Serialization::Metadata::JsonTypeInfo<TCollection> ^ CreateIDictionaryInfo(System::Text::Json::JsonSerializerOptions ^ options, System::Text::Json::Serialization::Metadata::JsonCollectionInfoValues<TCollection> ^ collectionInfo);
public static System.Text.Json.Serialization.Metadata.JsonTypeInfo<TCollection> CreateIDictionaryInfo<TCollection> (System.Text.Json.JsonSerializerOptions options, System.Text.Json.Serialization.Metadata.JsonCollectionInfoValues<TCollection> collectionInfo) where TCollection : System.Collections.IDictionary;
static member CreateIDictionaryInfo : System.Text.Json.JsonSerializerOptions * System.Text.Json.Serialization.Metadata.JsonCollectionInfoValues<'Collection (requires 'Collection :> System.Collections.IDictionary)> -> System.Text.Json.Serialization.Metadata.JsonTypeInfo<'Collection (requires 'Collection :> System.Collections.IDictionary)> (requires 'Collection :> System.Collections.IDictionary)
Public Shared Function CreateIDictionaryInfo(Of TCollection As IDictionary) (options As JsonSerializerOptions, collectionInfo As JsonCollectionInfoValues(Of TCollection)) As JsonTypeInfo(Of TCollection)

類型參數

TCollection

型別的泛型定義。

參數

options
JsonSerializerOptions

JsonSerializerOptions要用於序列化和還原序列化的 。

collectionInfo
JsonCollectionInfoValues<TCollection>

提供有關集合類型的序列化中繼資料。

傳回

JsonTypeInfo<TCollection>

指定類型的序列化中繼資料。

備註

此 API 可供 System.Text.Json 來源產生器的輸出使用,不應直接呼叫。

適用於