< Summary

Class:Azure.ResourceManager.Network.Models.ProtocolConfiguration
Assembly:Azure.ResourceManager.Network
File(s):C:\Git\azure-sdk-for-net\sdk\network\Azure.ResourceManager.Network\src\Generated\Models\ProtocolConfiguration.cs
C:\Git\azure-sdk-for-net\sdk\network\Azure.ResourceManager.Network\src\Generated\Models\ProtocolConfiguration.Serialization.cs
Covered lines:0
Uncovered lines:12
Coverable lines:12
Total lines:54
Line coverage:0% (0 of 12)
Covered branches:0
Total branches:2
Branch coverage:0% (0 of 2)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_HttpConfiguration()-0%100%
Azure.Core.IUtf8JsonSerializable.Write(...)-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\network\Azure.ResourceManager.Network\src\Generated\Models\ProtocolConfiguration.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4// <auto-generated/>
 5
 6#nullable disable
 7
 8namespace Azure.ResourceManager.Network.Models
 9{
 10    /// <summary> Configuration of the protocol. </summary>
 11    public partial class ProtocolConfiguration
 12    {
 13        /// <summary> Initializes a new instance of ProtocolConfiguration. </summary>
 014        public ProtocolConfiguration()
 15        {
 016        }
 17
 18        /// <summary> Initializes a new instance of ProtocolConfiguration. </summary>
 19        /// <param name="httpConfiguration"> HTTP configuration of the connectivity check. </param>
 020        internal ProtocolConfiguration(HttpConfiguration httpConfiguration)
 21        {
 022            HttpConfiguration = httpConfiguration;
 023        }
 24
 25        /// <summary> HTTP configuration of the connectivity check. </summary>
 026        public HttpConfiguration HttpConfiguration { get; set; }
 27    }
 28}

C:\Git\azure-sdk-for-net\sdk\network\Azure.ResourceManager.Network\src\Generated\Models\ProtocolConfiguration.Serialization.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4// <auto-generated/>
 5
 6#nullable disable
 7
 8using System.Text.Json;
 9using Azure.Core;
 10
 11namespace Azure.ResourceManager.Network.Models
 12{
 13    public partial class ProtocolConfiguration : IUtf8JsonSerializable
 14    {
 15        void IUtf8JsonSerializable.Write(Utf8JsonWriter writer)
 16        {
 017            writer.WriteStartObject();
 018            if (HttpConfiguration != null)
 19            {
 020                writer.WritePropertyName("HTTPConfiguration");
 021                writer.WriteObjectValue(HttpConfiguration);
 22            }
 023            writer.WriteEndObject();
 024        }
 25    }
 26}