< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_SeverityLevel()-100%100%
get_ProblemId()-100%100%
get_HandledAt()-100%100%
get_Assembly()-100%100%
get_Method()-100%100%
get_Message()-100%100%
get_Type()-100%100%
get_OuterType()-100%100%
get_OuterMethod()-100%100%
get_OuterAssembly()-100%100%
get_OuterMessage()-100%100%
get_InnermostType()-100%100%
get_InnermostMessage()-100%100%
get_InnermostMethod()-100%100%
get_InnermostAssembly()-100%100%
get_Details()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\applicationinsights\Microsoft.Azure.ApplicationInsights.Query\src\Generated\Models\EventsExceptionInfo.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    /// The exception info
 20    /// </summary>
 21    public partial class EventsExceptionInfo
 22    {
 23        /// <summary>
 24        /// Initializes a new instance of the EventsExceptionInfo class.
 25        /// </summary>
 1326        public EventsExceptionInfo()
 27        {
 28            CustomInit();
 1329        }
 30
 31        /// <summary>
 32        /// Initializes a new instance of the EventsExceptionInfo class.
 33        /// </summary>
 34        /// <param name="severityLevel">The severity level of the
 35        /// exception</param>
 36        /// <param name="problemId">The problem ID of the exception</param>
 37        /// <param name="handledAt">Indicates where the exception was handled
 38        /// at</param>
 39        /// <param name="assembly">The assembly which threw the
 40        /// exception</param>
 41        /// <param name="method">The method that threw the exception</param>
 42        /// <param name="message">The message of the exception</param>
 43        /// <param name="type">The type of the exception</param>
 44        /// <param name="outerType">The outer type of the exception</param>
 45        /// <param name="outerMethod">The outer method of the exception</param>
 46        /// <param name="outerAssembly">The outer assmebly of the
 47        /// exception</param>
 48        /// <param name="outerMessage">The outer message of the
 49        /// exception</param>
 50        /// <param name="innermostType">The inner most type of the
 51        /// exception</param>
 52        /// <param name="innermostMessage">The inner most message of the
 53        /// exception</param>
 54        /// <param name="innermostMethod">The inner most method of the
 55        /// exception</param>
 56        /// <param name="innermostAssembly">The inner most assembly of the
 57        /// exception</param>
 58        /// <param name="details">The details of the exception</param>
 059        public EventsExceptionInfo(int? severityLevel = default(int?), string problemId = default(string), string handle
 60        {
 061            SeverityLevel = severityLevel;
 062            ProblemId = problemId;
 063            HandledAt = handledAt;
 064            Assembly = assembly;
 065            Method = method;
 066            Message = message;
 067            Type = type;
 068            OuterType = outerType;
 069            OuterMethod = outerMethod;
 070            OuterAssembly = outerAssembly;
 071            OuterMessage = outerMessage;
 072            InnermostType = innermostType;
 073            InnermostMessage = innermostMessage;
 074            InnermostMethod = innermostMethod;
 075            InnermostAssembly = innermostAssembly;
 076            Details = details;
 77            CustomInit();
 078        }
 79
 80        /// <summary>
 81        /// An initialization method that performs custom operations like setting defaults
 82        /// </summary>
 83        partial void CustomInit();
 84
 85        /// <summary>
 86        /// Gets or sets the severity level of the exception
 87        /// </summary>
 88        [JsonProperty(PropertyName = "severityLevel")]
 1789        public int? SeverityLevel { get; set; }
 90
 91        /// <summary>
 92        /// Gets or sets the problem ID of the exception
 93        /// </summary>
 94        [JsonProperty(PropertyName = "problemId")]
 2895        public string ProblemId { get; set; }
 96
 97        /// <summary>
 98        /// Gets or sets indicates where the exception was handled at
 99        /// </summary>
 100        [JsonProperty(PropertyName = "handledAt")]
 17101        public string HandledAt { get; set; }
 102
 103        /// <summary>
 104        /// Gets or sets the assembly which threw the exception
 105        /// </summary>
 106        [JsonProperty(PropertyName = "assembly")]
 28107        public string Assembly { get; set; }
 108
 109        /// <summary>
 110        /// Gets or sets the method that threw the exception
 111        /// </summary>
 112        [JsonProperty(PropertyName = "method")]
 17113        public string Method { get; set; }
 114
 115        /// <summary>
 116        /// Gets or sets the message of the exception
 117        /// </summary>
 118        [JsonProperty(PropertyName = "message")]
 17119        public string Message { get; set; }
 120
 121        /// <summary>
 122        /// Gets or sets the type of the exception
 123        /// </summary>
 124        [JsonProperty(PropertyName = "type")]
 28125        public string Type { get; set; }
 126
 127        /// <summary>
 128        /// Gets or sets the outer type of the exception
 129        /// </summary>
 130        [JsonProperty(PropertyName = "outerType")]
 17131        public string OuterType { get; set; }
 132
 133        /// <summary>
 134        /// Gets or sets the outer method of the exception
 135        /// </summary>
 136        [JsonProperty(PropertyName = "outerMethod")]
 17137        public string OuterMethod { get; set; }
 138
 139        /// <summary>
 140        /// Gets or sets the outer assmebly of the exception
 141        /// </summary>
 142        [JsonProperty(PropertyName = "outerAssembly")]
 17143        public string OuterAssembly { get; set; }
 144
 145        /// <summary>
 146        /// Gets or sets the outer message of the exception
 147        /// </summary>
 148        [JsonProperty(PropertyName = "outerMessage")]
 17149        public string OuterMessage { get; set; }
 150
 151        /// <summary>
 152        /// Gets or sets the inner most type of the exception
 153        /// </summary>
 154        [JsonProperty(PropertyName = "innermostType")]
 17155        public string InnermostType { get; set; }
 156
 157        /// <summary>
 158        /// Gets or sets the inner most message of the exception
 159        /// </summary>
 160        [JsonProperty(PropertyName = "innermostMessage")]
 17161        public string InnermostMessage { get; set; }
 162
 163        /// <summary>
 164        /// Gets or sets the inner most method of the exception
 165        /// </summary>
 166        [JsonProperty(PropertyName = "innermostMethod")]
 17167        public string InnermostMethod { get; set; }
 168
 169        /// <summary>
 170        /// Gets or sets the inner most assembly of the exception
 171        /// </summary>
 172        [JsonProperty(PropertyName = "innermostAssembly")]
 17173        public string InnermostAssembly { get; set; }
 174
 175        /// <summary>
 176        /// Gets or sets the details of the exception
 177        /// </summary>
 178        [JsonProperty(PropertyName = "details")]
 162179        public IList<EventsExceptionDetail> Details { get; set; }
 180
 181    }
 182}