< Summary

Class:Azure.Iot.Hub.Service.Models.ExportImportDeviceImportMode
Assembly:Azure.Iot.Hub.Service
File(s):C:\Git\azure-sdk-for-net\sdk\iot\Azure.Iot.Hub.Service\src\Generated\Models\ExportImportDeviceImportMode.cs
Covered lines:6
Uncovered lines:10
Coverable lines:16
Total lines:66
Line coverage:37.5% (6 of 16)
Covered branches:1
Total branches:6
Branch coverage:16.6% (1 of 6)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor(...)-100%50%
get_Create()-100%100%
get_Update()-100%100%
get_UpdateIfMatchETag()-0%100%
get_Delete()-100%100%
get_DeleteIfMatchETag()-0%100%
get_UpdateTwin()-0%100%
get_UpdateTwinIfMatchETag()-0%100%
op_Equality(...)-0%100%
op_Inequality(...)-0%100%
op_Implicit(...)-0%100%
Equals(...)-0%0%
Equals(...)-0%100%
GetHashCode()-0%0%
ToString()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\iot\Azure.Iot.Hub.Service\src\Generated\Models\ExportImportDeviceImportMode.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4// <auto-generated/>
 5
 6#nullable disable
 7
 8using System;
 9using System.ComponentModel;
 10
 11namespace Azure.Iot.Hub.Service.Models
 12{
 13    /// <summary> The type of registry operation and ETag preferences. </summary>
 14    public readonly partial struct ExportImportDeviceImportMode : IEquatable<ExportImportDeviceImportMode>
 15    {
 16        private readonly string _value;
 17
 18        /// <summary> Determines if two <see cref="ExportImportDeviceImportMode"/> values are the same. </summary>
 19        /// <exception cref="ArgumentNullException"> <paramref name="value"/> is null. </exception>
 20        public ExportImportDeviceImportMode(string value)
 21        {
 1422            _value = value ?? throw new ArgumentNullException(nameof(value));
 1423        }
 24
 25        private const string CreateValue = "create";
 26        private const string UpdateValue = "update";
 27        private const string UpdateIfMatchETagValue = "updateIfMatchETag";
 28        private const string DeleteValue = "delete";
 29        private const string DeleteIfMatchETagValue = "deleteIfMatchETag";
 30        private const string UpdateTwinValue = "updateTwin";
 31        private const string UpdateTwinIfMatchETagValue = "updateTwinIfMatchETag";
 32
 33        /// <summary> create. </summary>
 32234        public static ExportImportDeviceImportMode Create { get; } = new ExportImportDeviceImportMode(CreateValue);
 35        /// <summary> update. </summary>
 5036        public static ExportImportDeviceImportMode Update { get; } = new ExportImportDeviceImportMode(UpdateValue);
 37        /// <summary> updateIfMatchETag. </summary>
 038        public static ExportImportDeviceImportMode UpdateIfMatchETag { get; } = new ExportImportDeviceImportMode(UpdateI
 39        /// <summary> delete. </summary>
 17040        public static ExportImportDeviceImportMode Delete { get; } = new ExportImportDeviceImportMode(DeleteValue);
 41        /// <summary> deleteIfMatchETag. </summary>
 042        public static ExportImportDeviceImportMode DeleteIfMatchETag { get; } = new ExportImportDeviceImportMode(DeleteI
 43        /// <summary> updateTwin. </summary>
 044        public static ExportImportDeviceImportMode UpdateTwin { get; } = new ExportImportDeviceImportMode(UpdateTwinValu
 45        /// <summary> updateTwinIfMatchETag. </summary>
 046        public static ExportImportDeviceImportMode UpdateTwinIfMatchETag { get; } = new ExportImportDeviceImportMode(Upd
 47        /// <summary> Determines if two <see cref="ExportImportDeviceImportMode"/> values are the same. </summary>
 048        public static bool operator ==(ExportImportDeviceImportMode left, ExportImportDeviceImportMode right) => left.Eq
 49        /// <summary> Determines if two <see cref="ExportImportDeviceImportMode"/> values are not the same. </summary>
 050        public static bool operator !=(ExportImportDeviceImportMode left, ExportImportDeviceImportMode right) => !left.E
 51        /// <summary> Converts a string to a <see cref="ExportImportDeviceImportMode"/>. </summary>
 052        public static implicit operator ExportImportDeviceImportMode(string value) => new ExportImportDeviceImportMode(v
 53
 54        /// <inheritdoc />
 55        [EditorBrowsable(EditorBrowsableState.Never)]
 056        public override bool Equals(object obj) => obj is ExportImportDeviceImportMode other && Equals(other);
 57        /// <inheritdoc />
 058        public bool Equals(ExportImportDeviceImportMode other) => string.Equals(_value, other._value, StringComparison.I
 59
 60        /// <inheritdoc />
 61        [EditorBrowsable(EditorBrowsableState.Never)]
 062        public override int GetHashCode() => _value?.GetHashCode() ?? 0;
 63        /// <inheritdoc />
 53664        public override string ToString() => _value;
 65    }
 66}