| File: System\Text\Json\Serialization\Converters\Collection\QueueOfTConverter.cs | Web Access |
| Project: src\runtime\src\libraries\System.Text.Json\src\System.Text.Json.csproj (System.Text.Json) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Collections.Generic; namespace System.Text.Json.Serialization.Converters { internal sealed class QueueOfTConverter<TCollection, TElement> : IEnumerableDefaultConverter<TCollection, TElement> where TCollection : Queue<TElement> { internal override bool CanPopulate => true; protected override void Add(in TElement value, ref ReadStack state) { ((TCollection)state.Current.ReturnValue!).Enqueue(value); } protected override void CreateCollection(ref Utf8JsonReader reader, scoped ref ReadStack state, JsonSerializerOptions options) { if (state.ParentProperty?.TryGetPrePopulatedValue(ref state) == true) { return; } if (state.Current.JsonTypeInfo.CreateObject == null) { ThrowHelper.ThrowNotSupportedException_SerializationNotSupported(state.Current.JsonTypeInfo.Type); } state.Current.ReturnValue = state.Current.JsonTypeInfo.CreateObject(); } } }