JsonMetadataServices.CreateIEnumerableInfo Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
CreateIEnumerableInfo<TCollection,TElement>(JsonSerializerOptions, JsonCollectionInfoValues<TCollection>) |
Crée des métadonnées pour les types assignables à IEnumerable<T>. |
CreateIEnumerableInfo<TCollection>(JsonSerializerOptions, JsonCollectionInfoValues<TCollection>) |
Crée des métadonnées pour les types assignables à IEnumerable. |
CreateIEnumerableInfo<TCollection,TElement>(JsonSerializerOptions, JsonCollectionInfoValues<TCollection>)
Crée des métadonnées pour les types assignables à 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)
Paramètres de type
- TCollection
Définition générique du type.
- TElement
Définition générique du type d’élément.
Paramètres
- options
- JsonSerializerOptions
À JsonSerializerOptions utiliser pour la sérialisation et la désérialisation.
- collectionInfo
- JsonCollectionInfoValues<TCollection>
Fournit des métadonnées de sérialisation sur le type de collection.
Retours
- JsonTypeInfo<TCollection>
Métadonnées de sérialisation pour le type donné.
Remarques
Cette API est utilisée par la sortie du générateur source System.Text.Json et ne doit pas être appelée directement.
S’applique à
CreateIEnumerableInfo<TCollection>(JsonSerializerOptions, JsonCollectionInfoValues<TCollection>)
Crée des métadonnées pour les types assignables à 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)
Paramètres de type
- TCollection
Définition générique du type.
Paramètres
- options
- JsonSerializerOptions
À JsonSerializerOptions utiliser pour la sérialisation et la désérialisation.
- collectionInfo
- JsonCollectionInfoValues<TCollection>
Fournit des métadonnées de sérialisation sur le type de collection.
Retours
- JsonTypeInfo<TCollection>
Métadonnées de sérialisation pour le type donné.
Remarques
Cette API est utilisée par la sortie du générateur source System.Text.Json et ne doit pas être appelée directement.