< Summary

Class:Microsoft.Azure.Batch.Protocol.Models.MetadataItem
Assembly:Microsoft.Azure.Batch
File(s):C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\GeneratedProtocol\Models\MetadataItem.cs
Covered lines:8
Uncovered lines:0
Coverable lines:8
Total lines:63
Line coverage:100% (8 of 8)
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%

File(s)

C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\GeneratedProtocol\Models\MetadataItem.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.Batch.Protocol.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Linq;
 15
 16    /// <summary>
 17    /// A name-value pair associated with a Batch service resource.
 18    /// </summary>
 19    /// <remarks>
 20    /// The Batch service does not assign any meaning to this metadata; it is
 21    /// solely for the use of user code.
 22    /// </remarks>
 23    public partial class MetadataItem
 24    {
 25        /// <summary>
 26        /// Initializes a new instance of the MetadataItem class.
 27        /// </summary>
 998028        public MetadataItem()
 29        {
 30            CustomInit();
 998031        }
 32
 33        /// <summary>
 34        /// Initializes a new instance of the MetadataItem class.
 35        /// </summary>
 36        /// <param name="name">The name of the metadata item.</param>
 37        /// <param name="value">The value of the metadata item.</param>
 738        public MetadataItem(string name, string value)
 39        {
 740            Name = name;
 741            Value = value;
 42            CustomInit();
 743        }
 44
 45        /// <summary>
 46        /// An initialization method that performs custom operations like setting defaults
 47        /// </summary>
 48        partial void CustomInit();
 49
 50        /// <summary>
 51        /// Gets or sets the name of the metadata item.
 52        /// </summary>
 53        [JsonProperty(PropertyName = "name")]
 2419054        public string Name { get; set; }
 55
 56        /// <summary>
 57        /// Gets or sets the value of the metadata item.
 58        /// </summary>
 59        [JsonProperty(PropertyName = "value")]
 2418860        public string Value { get; set; }
 61
 62    }
 63}