< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor(...)-100%100%
get_Code()-100%100%
get_Message()-100%100%
get_Values()-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\DeleteCertificateError.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    /// An error encountered by the Batch service when deleting a certificate.
 22    /// </summary>
 23    public partial class DeleteCertificateError : IPropertyMetadata
 24    {
 25        #region Constructors
 26
 50327        internal DeleteCertificateError(Models.DeleteCertificateError protocolObject)
 28        {
 50329            this.Code = protocolObject.Code;
 50330            this.Message = protocolObject.Message;
 50331            this.Values = NameValuePair.ConvertFromProtocolCollectionReadOnly(protocolObject.Values);
 50332        }
 33
 34        #endregion Constructors
 35
 36        #region DeleteCertificateError
 37
 38        /// <summary>
 39        /// Gets a code for the certificate deletion error. See <see cref="Common.BatchErrorCodeStrings"/> for possible 
 40        /// </summary>
 50341        public string Code { get; }
 42
 43        /// <summary>
 44        /// Gets a message describing the certificagte deletion error, intended to be suitable for display in a user int
 45        /// </summary>
 50346        public string Message { get; }
 47
 48        /// <summary>
 49        /// Gets a list of additional error details related to the certificate deletion error.
 50        /// </summary>
 50351        public IReadOnlyList<NameValuePair> Values { get; }
 52
 53        #endregion // DeleteCertificateError
 54
 55        #region IPropertyMetadata
 56
 57        bool IModifiable.HasBeenModified
 58        {
 59            //This class is compile time readonly so it cannot have been modified
 060            get { return false; }
 61        }
 62
 63        bool IReadOnly.IsReadOnly
 64        {
 065            get { return true; }
 66            set
 67            {
 68                // This class is compile time readonly already
 50369            }
 70        }
 71
 72        #endregion // IPropertyMetadata
 73    }
 74}