< Summary

Class:Azure.ResourceManager.Compute.Models.InnerError
Assembly:Azure.ResourceManager.Compute
File(s):C:\Git\azure-sdk-for-net\sdk\compute\Azure.ResourceManager.Compute\src\Generated\Models\InnerError.cs
C:\Git\azure-sdk-for-net\sdk\compute\Azure.ResourceManager.Compute\src\Generated\Models\InnerError.Serialization.cs
Covered lines:0
Uncovered lines:28
Coverable lines:28
Total lines:91
Line coverage:0% (0 of 28)
Covered branches:0
Total branches:14
Branch coverage:0% (0 of 14)

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\compute\Azure.ResourceManager.Compute\src\Generated\Models\InnerError.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.Compute.Models
 9{
 10    /// <summary> Inner error details. </summary>
 11    public partial class InnerError
 12    {
 13        /// <summary> Initializes a new instance of InnerError. </summary>
 014        public InnerError()
 15        {
 016        }
 17
 18        /// <summary> Initializes a new instance of InnerError. </summary>
 19        /// <param name="exceptiontype"> The exception type. </param>
 20        /// <param name="errordetail"> The internal error message or exception dump. </param>
 021        internal InnerError(string exceptiontype, string errordetail)
 22        {
 023            Exceptiontype = exceptiontype;
 024            Errordetail = errordetail;
 025        }
 26
 27        /// <summary> The exception type. </summary>
 028        public string Exceptiontype { get; set; }
 29        /// <summary> The internal error message or exception dump. </summary>
 030        public string Errordetail { get; set; }
 31    }
 32}

C:\Git\azure-sdk-for-net\sdk\compute\Azure.ResourceManager.Compute\src\Generated\Models\InnerError.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.Compute.Models
 12{
 13    public partial class InnerError : IUtf8JsonSerializable
 14    {
 15        void IUtf8JsonSerializable.Write(Utf8JsonWriter writer)
 16        {
 017            writer.WriteStartObject();
 018            if (Exceptiontype != null)
 19            {
 020                writer.WritePropertyName("exceptiontype");
 021                writer.WriteStringValue(Exceptiontype);
 22            }
 023            if (Errordetail != null)
 24            {
 025                writer.WritePropertyName("errordetail");
 026                writer.WriteStringValue(Errordetail);
 27            }
 028            writer.WriteEndObject();
 029        }
 30
 31        internal static InnerError DeserializeInnerError(JsonElement element)
 32        {
 033            string exceptiontype = default;
 034            string errordetail = default;
 035            foreach (var property in element.EnumerateObject())
 36            {
 037                if (property.NameEquals("exceptiontype"))
 38                {
 039                    if (property.Value.ValueKind == JsonValueKind.Null)
 40                    {
 41                        continue;
 42                    }
 043                    exceptiontype = property.Value.GetString();
 044                    continue;
 45                }
 046                if (property.NameEquals("errordetail"))
 47                {
 048                    if (property.Value.ValueKind == JsonValueKind.Null)
 49                    {
 50                        continue;
 51                    }
 052                    errordetail = property.Value.GetString();
 53                    continue;
 54                }
 55            }
 056            return new InnerError(exceptiontype, errordetail);
 57        }
 58    }
 59}