< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_ProfileUrl()-0%100%
DeserializeVpnProfileResponse(...)-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\network\Azure.ResourceManager.Network\src\Generated\Models\VpnProfileResponse.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> Vpn Profile Response for package generation. </summary>
 11    public partial class VpnProfileResponse
 12    {
 13        /// <summary> Initializes a new instance of VpnProfileResponse. </summary>
 014        internal VpnProfileResponse()
 15        {
 016        }
 17
 18        /// <summary> Initializes a new instance of VpnProfileResponse. </summary>
 19        /// <param name="profileUrl"> URL to the VPN profile. </param>
 020        internal VpnProfileResponse(string profileUrl)
 21        {
 022            ProfileUrl = profileUrl;
 023        }
 24
 25        /// <summary> URL to the VPN profile. </summary>
 026        public string ProfileUrl { get; }
 27    }
 28}

C:\Git\azure-sdk-for-net\sdk\network\Azure.ResourceManager.Network\src\Generated\Models\VpnProfileResponse.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 VpnProfileResponse
 14    {
 15        internal static VpnProfileResponse DeserializeVpnProfileResponse(JsonElement element)
 16        {
 017            string profileUrl = default;
 018            foreach (var property in element.EnumerateObject())
 19            {
 020                if (property.NameEquals("profileUrl"))
 21                {
 022                    if (property.Value.ValueKind == JsonValueKind.Null)
 23                    {
 24                        continue;
 25                    }
 026                    profileUrl = property.Value.GetString();
 27                    continue;
 28                }
 29            }
 030            return new VpnProfileResponse(profileUrl);
 31        }
 32    }
 33}