< Summary

Class:Microsoft.Azure.Batch.MetadataItem
Assembly:Microsoft.Azure.Batch
File(s):C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\Generated\MetadataItem.cs
Covered lines:24
Uncovered lines:12
Coverable lines:36
Total lines:141
Line coverage:66.6% (24 of 36)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor(...)-100%100%
.ctor(...)-100%100%
get_Name()-100%100%
get_Value()-100%100%
Microsoft.Azure.Batch.IModifiable.get_HasBeenModified()-100%100%
Microsoft.Azure.Batch.IReadOnly.get_IsReadOnly()-0%100%
Microsoft.Azure.Batch.IReadOnly.set_IsReadOnly(...)-100%100%
Microsoft.Azure.Batch.ITransportObjectProvider<Microsoft.Azure.Batch.Protocol.Models.MetadataItem>.GetTransportObject()-100%100%
ConvertFromProtocolCollection(...)-100%100%
ConvertFromProtocolCollectionAndFreeze(...)-0%100%
ConvertFromProtocolCollectionReadOnly(...)-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\Generated\MetadataItem.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    /// A name-value pair associated with a Batch service resource. The Batch service does not assign any meaning to thi
 22    /// metadata; it is solely for the use of user code.
 23    /// </summary>
 24    public partial class MetadataItem : ITransportObjectProvider<Models.MetadataItem>, IPropertyMetadata
 25    {
 26        #region Constructors
 27        /// <summary>
 28        /// Initializes a new instance of the <see cref="MetadataItem"/> class.
 29        /// </summary>
 30        /// <param name='name'>The name of the <see cref="MetadataItem"/>.</param>
 31        /// <param name='value'>The value of the <see cref="MetadataItem"/>.</param>
 151632        public MetadataItem(
 151633            string name,
 151634            string value)
 35        {
 151636            this.Name = name;
 151637            this.Value = value;
 151638        }
 39
 852640        internal MetadataItem(Models.MetadataItem protocolObject)
 41        {
 852642            this.Name = protocolObject.Name;
 852643            this.Value = protocolObject.Value;
 852644        }
 45
 46        #endregion Constructors
 47
 48        #region MetadataItem
 49
 50        /// <summary>
 51        /// Gets the name of the <see cref="MetadataItem"/>.
 52        /// </summary>
 1144453        public string Name { get; }
 54
 55        /// <summary>
 56        /// Gets the value of the <see cref="MetadataItem"/>.
 57        /// </summary>
 1144458        public string Value { get; }
 59
 60        #endregion // MetadataItem
 61
 62        #region IPropertyMetadata
 63
 64        bool IModifiable.HasBeenModified
 65        {
 66            //This class is compile time readonly so it cannot have been modified
 467            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
 989476            }
 77        }
 78
 79        #endregion // IPropertyMetadata
 80
 81        #region Internal/private methods
 82
 83        /// <summary>
 84        /// Return a protocol object of the requested type.
 85        /// </summary>
 86        /// <returns>The protocol object of the requested type.</returns>
 87        Models.MetadataItem ITransportObjectProvider<Models.MetadataItem>.GetTransportObject()
 88        {
 146189            Models.MetadataItem result = new Models.MetadataItem()
 146190            {
 146191                Name = this.Name,
 146192                Value = this.Value,
 146193            };
 94
 146195            return result;
 96        }
 97
 98        /// <summary>
 99        /// Converts a collection of protocol layer objects to object layer collection objects.
 100        /// </summary>
 101        internal static IList<MetadataItem> ConvertFromProtocolCollection(IEnumerable<Models.MetadataItem> protoCollecti
 102        {
 3738103            ConcurrentChangeTrackedModifiableList<MetadataItem> converted = UtilitiesInternal.CollectionToThreadSafeColl
 3738104                items: protoCollection,
 12260105                objectCreationFunc: o => new MetadataItem(o));
 106
 3738107            return converted;
 108        }
 109
 110        /// <summary>
 111        /// Converts a collection of protocol layer objects to object layer collection objects, in a frozen state.
 112        /// </summary>
 113        internal static IList<MetadataItem> ConvertFromProtocolCollectionAndFreeze(IEnumerable<Models.MetadataItem> prot
 114        {
 0115            ConcurrentChangeTrackedModifiableList<MetadataItem> converted = UtilitiesInternal.CollectionToThreadSafeColl
 0116                items: protoCollection,
 0117                objectCreationFunc: o => new MetadataItem(o).Freeze());
 118
 0119            converted = UtilitiesInternal.CreateObjectWithNullCheck(converted, o => o.Freeze());
 120
 0121            return converted;
 122        }
 123
 124        /// <summary>
 125        /// Converts a collection of protocol layer objects to object layer collection objects, with each object marked 
 126        /// and returned as a readonly collection.
 127        /// </summary>
 128        internal static IReadOnlyList<MetadataItem> ConvertFromProtocolCollectionReadOnly(IEnumerable<Models.MetadataIte
 129        {
 0130            IReadOnlyList<MetadataItem> converted =
 0131                UtilitiesInternal.CreateObjectWithNullCheck(
 0132                    UtilitiesInternal.CollectionToNonThreadSafeCollection(
 0133                        items: protoCollection,
 0134                        objectCreationFunc: o => new MetadataItem(o).Freeze()), o => o.AsReadOnly());
 135
 0136            return converted;
 137        }
 138
 139        #endregion // Internal/private methods
 140    }
 141}