Freigeben über


JsonMetadataServices.CreateIEnumerableInfo Methode

Definition

Überlädt

CreateIEnumerableInfo<TCollection,TElement>(JsonSerializerOptions, JsonCollectionInfoValues<TCollection>)

Erstellt Metadaten für Typen, die zugewiesen werden können IEnumerable<T>.

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

Erstellt Metadaten für Typen, die zugewiesen werden können IEnumerable.

CreateIEnumerableInfo<TCollection,TElement>(JsonSerializerOptions, JsonCollectionInfoValues<TCollection>)

Quelle:
JsonMetadataServices.Collections.cs
Quelle:
JsonMetadataServices.Collections.cs
Quelle:
JsonMetadataServices.Collections.cs
Quelle:
JsonMetadataServices.Collections.cs
Quelle:
JsonMetadataServices.Collections.cs

Erstellt Metadaten für Typen, die zugewiesen werden können IEnumerable<T>.

public:
generic <typename TCollection, typename TElement>
 where TCollection : System::Collections::Generic::IEnumerable<TElement> static System::Text::Json::Serialization::Metadata::JsonTypeInfo<TCollection> ^ CreateIEnumerableInfo(System::Text::Json::JsonSerializerOptions ^ options, System::Text::Json::Serialization::Metadata::JsonCollectionInfoValues<TCollection> ^ collectionInfo);
public static System.Text.Json.Serialization.Metadata.JsonTypeInfo<TCollection> CreateIEnumerableInfo<TCollection,TElement> (System.Text.Json.JsonSerializerOptions options, System.Text.Json.Serialization.Metadata.JsonCollectionInfoValues<TCollection> collectionInfo) where TCollection : System.Collections.Generic.IEnumerable<TElement>;
static member CreateIEnumerableInfo : System.Text.Json.JsonSerializerOptions * System.Text.Json.Serialization.Metadata.JsonCollectionInfoValues<#seq<'Element>> -> System.Text.Json.Serialization.Metadata.JsonTypeInfo<#seq<'Element>>
Public Shared Function CreateIEnumerableInfo(Of TCollection As IEnumerable(Of TElement), TElement As IEnumerable(Of TElement)) (options As JsonSerializerOptions, collectionInfo As JsonCollectionInfoValues(Of TCollection)) As JsonTypeInfo(Of TCollection)

Typparameter

TCollection

Die generische Definition des Typs.

TElement

Die generische Definition des Elementtyps.

Parameter

options
JsonSerializerOptions

Die , die JsonSerializerOptions für die Serialisierung und Deserialisierung verwendet werden soll.

collectionInfo
JsonCollectionInfoValues<TCollection>

Stellt Serialisierungsmetadaten zum Sammlungstyp bereit.

Gibt zurück

JsonTypeInfo<TCollection>

Serialisierungsmetadaten für den angegebenen Typ.

Hinweise

Diese API ist für die Verwendung durch die Ausgabe des System.Text.Json-Quellgenerators vorgesehen und sollte nicht direkt aufgerufen werden.

Gilt für:

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

Quelle:
JsonMetadataServices.Collections.cs
Quelle:
JsonMetadataServices.Collections.cs
Quelle:
JsonMetadataServices.Collections.cs
Quelle:
JsonMetadataServices.Collections.cs
Quelle:
JsonMetadataServices.Collections.cs

Erstellt Metadaten für Typen, die zugewiesen werden können IEnumerable.

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

Typparameter

TCollection

Die generische Definition des Typs.

Parameter

options
JsonSerializerOptions

Die , die JsonSerializerOptions für die Serialisierung und Deserialisierung verwendet werden soll.

collectionInfo
JsonCollectionInfoValues<TCollection>

Stellt Serialisierungsmetadaten zum Sammlungstyp bereit.

Gibt zurück

JsonTypeInfo<TCollection>

Serialisierungsmetadaten für den angegebenen Typ.

Hinweise

Diese API ist für die Verwendung durch die Ausgabe des System.Text.Json-Quellgenerators vorgesehen und sollte nicht direkt aufgerufen werden.

Gilt für: