< Summary

Class:Microsoft.Azure.ApplicationInsights.Query.Models.EventsExceptionDetailsParsedStack
Assembly:Microsoft.Azure.ApplicationInsights.Query
File(s):C:\Git\azure-sdk-for-net\sdk\applicationinsights\Microsoft.Azure.ApplicationInsights.Query\src\Generated\Models\EventsExceptionDetailsParsedStack.cs
Covered lines:6
Uncovered lines:6
Coverable lines:12
Total lines:77
Line coverage:50% (6 of 12)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_Assembly()-100%100%
get_Method()-100%100%
get_Level()-100%100%
get_Line()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\applicationinsights\Microsoft.Azure.ApplicationInsights.Query\src\Generated\Models\EventsExceptionDetailsParsedStack.cs

#LineLine coverage
 1// <auto-generated>
 2// Copyright (c) Microsoft Corporation. All rights reserved.
 3// Licensed under the MIT License. See License.txt in the project root for
 4// license information.
 5//
 6// Code generated by Microsoft (R) AutoRest Code Generator.
 7// Changes may cause incorrect behavior and will be lost if the code is
 8// regenerated.
 9// </auto-generated>
 10
 11namespace Microsoft.Azure.ApplicationInsights.Query.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Linq;
 15
 16    /// <summary>
 17    /// A parsed stack entry
 18    /// </summary>
 19    public partial class EventsExceptionDetailsParsedStack
 20    {
 21        /// <summary>
 22        /// Initializes a new instance of the EventsExceptionDetailsParsedStack
 23        /// class.
 24        /// </summary>
 39425        public EventsExceptionDetailsParsedStack()
 26        {
 27            CustomInit();
 39428        }
 29
 30        /// <summary>
 31        /// Initializes a new instance of the EventsExceptionDetailsParsedStack
 32        /// class.
 33        /// </summary>
 34        /// <param name="assembly">The assembly of the stack entry</param>
 35        /// <param name="method">The method of the stack entry</param>
 36        /// <param name="level">The level of the stack entry</param>
 37        /// <param name="line">The line of the stack entry</param>
 038        public EventsExceptionDetailsParsedStack(string assembly = default(string), string method = default(string), lon
 39        {
 040            Assembly = assembly;
 041            Method = method;
 042            Level = level;
 043            Line = line;
 44            CustomInit();
 045        }
 46
 47        /// <summary>
 48        /// An initialization method that performs custom operations like setting defaults
 49        /// </summary>
 50        partial void CustomInit();
 51
 52        /// <summary>
 53        /// Gets or sets the assembly of the stack entry
 54        /// </summary>
 55        [JsonProperty(PropertyName = "assembly")]
 48956        public string Assembly { get; set; }
 57
 58        /// <summary>
 59        /// Gets or sets the method of the stack entry
 60        /// </summary>
 61        [JsonProperty(PropertyName = "method")]
 48962        public string Method { get; set; }
 63
 64        /// <summary>
 65        /// Gets or sets the level of the stack entry
 66        /// </summary>
 67        [JsonProperty(PropertyName = "level")]
 48968        public long? Level { get; set; }
 69
 70        /// <summary>
 71        /// Gets or sets the line of the stack entry
 72        /// </summary>
 73        [JsonProperty(PropertyName = "line")]
 48974        public long? Line { get; set; }
 75
 76    }
 77}