< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_SeverityLevel()-100%100%
get_OuterId()-100%100%
get_Message()-100%100%
get_Type()-100%100%
get_Id()-100%100%
get_ParsedStack()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\applicationinsights\Microsoft.Azure.ApplicationInsights.Query\src\Generated\Models\EventsExceptionDetail.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.Collections;
 15    using System.Collections.Generic;
 16    using System.Linq;
 17
 18    /// <summary>
 19    /// Exception details
 20    /// </summary>
 21    public partial class EventsExceptionDetail
 22    {
 23        /// <summary>
 24        /// Initializes a new instance of the EventsExceptionDetail class.
 25        /// </summary>
 1726        public EventsExceptionDetail()
 27        {
 28            CustomInit();
 1729        }
 30
 31        /// <summary>
 32        /// Initializes a new instance of the EventsExceptionDetail class.
 33        /// </summary>
 34        /// <param name="severityLevel">The severity level of the exception
 35        /// detail</param>
 36        /// <param name="outerId">The outer ID of the exception detail</param>
 37        /// <param name="message">The message of the exception detail</param>
 38        /// <param name="type">The type of the exception detail</param>
 39        /// <param name="id">The ID of the exception detail</param>
 40        /// <param name="parsedStack">The parsed stack</param>
 041        public EventsExceptionDetail(string severityLevel = default(string), string outerId = default(string), string me
 42        {
 043            SeverityLevel = severityLevel;
 044            OuterId = outerId;
 045            Message = message;
 046            Type = type;
 047            Id = id;
 048            ParsedStack = parsedStack;
 49            CustomInit();
 050        }
 51
 52        /// <summary>
 53        /// An initialization method that performs custom operations like setting defaults
 54        /// </summary>
 55        partial void CustomInit();
 56
 57        /// <summary>
 58        /// Gets or sets the severity level of the exception detail
 59        /// </summary>
 60        [JsonProperty(PropertyName = "severityLevel")]
 2161        public string SeverityLevel { get; set; }
 62
 63        /// <summary>
 64        /// Gets or sets the outer ID of the exception detail
 65        /// </summary>
 66        [JsonProperty(PropertyName = "outerId")]
 3267        public string OuterId { get; set; }
 68
 69        /// <summary>
 70        /// Gets or sets the message of the exception detail
 71        /// </summary>
 72        [JsonProperty(PropertyName = "message")]
 3273        public string Message { get; set; }
 74
 75        /// <summary>
 76        /// Gets or sets the type of the exception detail
 77        /// </summary>
 78        [JsonProperty(PropertyName = "type")]
 3279        public string Type { get; set; }
 80
 81        /// <summary>
 82        /// Gets or sets the ID of the exception detail
 83        /// </summary>
 84        [JsonProperty(PropertyName = "id")]
 3285        public string Id { get; set; }
 86
 87        /// <summary>
 88        /// Gets or sets the parsed stack
 89        /// </summary>
 90        [JsonProperty(PropertyName = "parsedStack")]
 10491        public IList<EventsExceptionDetailsParsedStack> ParsedStack { get; set; }
 92
 93    }
 94}