< Summary

Information
Line coverage
100%
Covered lines: 1
Uncovered lines: 0
Coverable lines: 1
Total lines: 16
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

File(s)

C:\h\w\B31A098C\w\BB5A0A33\e\runtime-utils\Runner\runtime\src\libraries\System.Text.Json\src\System\Text\Json\Nodes\JsonNodeOptions.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
 4namespace System.Text.Json.Nodes
 5{
 6    /// <summary>
 7    ///   Options to control <see cref="JsonNode"/> behavior.
 8    /// </summary>
 9    public struct JsonNodeOptions
 10    {
 11        /// <summary>
 12        ///   Specifies whether property names on <see cref="JsonObject"/> are case insensitive.
 13        /// </summary>
 129014        public bool PropertyNameCaseInsensitive { get; set; }
 15    }
 16}

Methods/Properties

PropertyNameCaseInsensitive()