< Summary

Class:Microsoft.Azure.Batch.TaskFailureInformation
Assembly:Microsoft.Azure.Batch
File(s):C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\Generated\TaskFailureInformation.cs
Covered lines:11
Uncovered lines:2
Coverable lines:13
Total lines:81
Line coverage:84.6% (11 of 13)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor(...)-100%100%
get_Category()-100%100%
get_Code()-100%100%
get_Details()-100%100%
get_Message()-100%100%
Microsoft.Azure.Batch.IModifiable.get_HasBeenModified()-0%100%
Microsoft.Azure.Batch.IReadOnly.get_IsReadOnly()-0%100%
Microsoft.Azure.Batch.IReadOnly.set_IsReadOnly(...)-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\Generated\TaskFailureInformation.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License. See License.txt in the project root for license information.
 3//
 4// Code generated by Microsoft (R) AutoRest Code Generator.
 5// Changes may cause incorrect behavior and will be lost if the code is
 6// regenerated.
 7
 8//
 9// This file was autogenerated by a tool.
 10// Do not modify it.
 11//
 12
 13namespace Microsoft.Azure.Batch
 14{
 15    using Models = Microsoft.Azure.Batch.Protocol.Models;
 16    using System;
 17    using System.Collections.Generic;
 18    using System.Linq;
 19
 20    /// <summary>
 21    /// Information about a task failure.
 22    /// </summary>
 23    public partial class TaskFailureInformation : IPropertyMetadata
 24    {
 25        #region Constructors
 26
 149127        internal TaskFailureInformation(Models.TaskFailureInformation protocolObject)
 28        {
 149129            this.Category = UtilitiesInternal.MapEnum<Models.ErrorCategory, Common.ErrorCategory>(protocolObject.Categor
 149130            this.Code = protocolObject.Code;
 149131            this.Details = NameValuePair.ConvertFromProtocolCollectionReadOnly(protocolObject.Details);
 149132            this.Message = protocolObject.Message;
 149133        }
 34
 35        #endregion Constructors
 36
 37        #region TaskFailureInformation
 38
 39        /// <summary>
 40        /// Gets the category of the task error.
 41        /// </summary>
 148742        public Common.ErrorCategory Category { get; }
 43
 44        /// <summary>
 45        /// Gets a code for the task scheduling error. See <see cref="Common.TaskFailureInformationCodes"/> for possible
 46        /// values.
 47        /// </summary>
 148748        public string Code { get; }
 49
 50        /// <summary>
 51        /// Gets a list of additional error details related to the error.
 52        /// </summary>
 148753        public IReadOnlyList<NameValuePair> Details { get; }
 54
 55        /// <summary>
 56        /// Gets a message describing the task error, intended to be suitable for display in a user interface.
 57        /// </summary>
 148758        public string Message { get; }
 59
 60        #endregion // TaskFailureInformation
 61
 62        #region IPropertyMetadata
 63
 64        bool IModifiable.HasBeenModified
 65        {
 66            //This class is compile time readonly so it cannot have been modified
 067            get { return false; }
 68        }
 69
 70        bool IReadOnly.IsReadOnly
 71        {
 072            get { return true; }
 73            set
 74            {
 75                // This class is compile time readonly already
 149176            }
 77        }
 78
 79        #endregion // IPropertyMetadata
 80    }
 81}