JsonMetadataServices.CreateConcurrentQueueInfo<TCollection,TElement> Метод
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Создает метаданные для типов, назначаемых .ConcurrentQueue<T>
public:
generic <typename TCollection, typename TElement>
where TCollection : System::Collections::Concurrent::ConcurrentQueue<TElement> static System::Text::Json::Serialization::Metadata::JsonTypeInfo<TCollection> ^ CreateConcurrentQueueInfo(System::Text::Json::JsonSerializerOptions ^ options, System::Text::Json::Serialization::Metadata::JsonCollectionInfoValues<TCollection> ^ collectionInfo);
public static System.Text.Json.Serialization.Metadata.JsonTypeInfo<TCollection> CreateConcurrentQueueInfo<TCollection,TElement> (System.Text.Json.JsonSerializerOptions options, System.Text.Json.Serialization.Metadata.JsonCollectionInfoValues<TCollection> collectionInfo) where TCollection : System.Collections.Concurrent.ConcurrentQueue<TElement>;
static member CreateConcurrentQueueInfo : System.Text.Json.JsonSerializerOptions * System.Text.Json.Serialization.Metadata.JsonCollectionInfoValues<'Collection (requires 'Collection :> System.Collections.Concurrent.ConcurrentQueue<'Element>)> -> System.Text.Json.Serialization.Metadata.JsonTypeInfo<'Collection (requires 'Collection :> System.Collections.Concurrent.ConcurrentQueue<'Element>)> (requires 'Collection :> System.Collections.Concurrent.ConcurrentQueue<'Element>)
Public Shared Function CreateConcurrentQueueInfo(Of TCollection As ConcurrentQueue(Of TElement), TElement As ConcurrentQueue(Of TElement)) (options As JsonSerializerOptions, collectionInfo As JsonCollectionInfoValues(Of TCollection)) As JsonTypeInfo(Of TCollection)
Параметры типа
- TCollection
Универсальное определение типа.
- TElement
Универсальное определение типа элемента.
Параметры
- options
- JsonSerializerOptions
Используемые параметры сериализации и десериализации.
- collectionInfo
- JsonCollectionInfoValues<TCollection>
Предоставляет метаданные сериализации о типе коллекции.
Возвращаемое значение
Метаданные сериализации для заданного типа.
Комментарии
Этот API предназначен для использования выходными данными генератора источника System.Text.Json и не должен вызываться напрямую.