< Summary

Information
Class: System.Text.Json.Serialization.Converters.QueueOfTConverter<T1, T2>
Assembly: System.Text.Json
File(s): C:\h\w\B31A098C\w\BB5A0A33\e\runtime-utils\Runner\runtime\src\libraries\System.Text.Json\src\System\Text\Json\Serialization\Converters\Collection\QueueOfTConverter.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 13
Coverable lines: 13
Total lines: 34
Line coverage: 0%
Branch coverage
0%
Covered branches: 0
Total branches: 6
Branch coverage: 0%
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Cyclomatic complexity NPath complexity Sequence coverage
Add(TElement& modreq(...)100%110%
CreateCollection(...)0%660%

File(s)

C:\h\w\B31A098C\w\BB5A0A33\e\runtime-utils\Runner\runtime\src\libraries\System.Text.Json\src\System\Text\Json\Serialization\Converters\Collection\QueueOfTConverter.cs

#LineLine coverage
 1// Licensed to the .NET Foundation under one or more agreements.
 2// The .NET Foundation licenses this file to you under the MIT license.
 3
 4using System.Collections.Generic;
 5
 6namespace System.Text.Json.Serialization.Converters
 7{
 8    internal sealed class QueueOfTConverter<TCollection, TElement>
 9        : IEnumerableDefaultConverter<TCollection, TElement>
 10        where TCollection : Queue<TElement>
 11    {
 012        internal override bool CanPopulate => true;
 13
 14        protected override void Add(in TElement value, ref ReadStack state)
 015        {
 016            ((TCollection)state.Current.ReturnValue!).Enqueue(value);
 017        }
 18
 19        protected override void CreateCollection(ref Utf8JsonReader reader, scoped ref ReadStack state, JsonSerializerOp
 020        {
 021            if (state.ParentProperty?.TryGetPrePopulatedValue(ref state) == true)
 022            {
 023                return;
 24            }
 25
 026            if (state.Current.JsonTypeInfo.CreateObject == null)
 027            {
 028                ThrowHelper.ThrowNotSupportedException_SerializationNotSupported(state.Current.JsonTypeInfo.Type);
 29            }
 30
 031            state.Current.ReturnValue = state.Current.JsonTypeInfo.CreateObject();
 032        }
 33    }
 34}