< Summary

Class:Azure.Messaging.EventGrid.SystemEvents.AsyncStatus
Assembly:Azure.Messaging.EventGrid
File(s):C:\Git\azure-sdk-for-net\sdk\eventgrid\Azure.Messaging.EventGrid\src\Generated\Models\AsyncStatus.cs
Covered lines:2
Uncovered lines:10
Coverable lines:12
Total lines:54
Line coverage:16.6% (2 of 12)
Covered branches:1
Total branches:6
Branch coverage:16.6% (1 of 6)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor(...)-100%50%
get_Started()-0%100%
get_Completed()-0%100%
get_Failed()-0%100%
op_Equality(...)-0%100%
op_Inequality(...)-0%100%
op_Implicit(...)-0%100%
Equals(...)-0%0%
Equals(...)-0%100%
GetHashCode()-0%0%
ToString()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\eventgrid\Azure.Messaging.EventGrid\src\Generated\Models\AsyncStatus.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.Messaging.EventGrid.SystemEvents
 12{
 13    /// <summary> Asynchronous operation status of the operation on the app service plan. </summary>
 14    public readonly partial struct AsyncStatus : IEquatable<AsyncStatus>
 15    {
 16        private readonly string _value;
 17
 18        /// <summary> Determines if two <see cref="AsyncStatus"/> values are the same. </summary>
 19        /// <exception cref="ArgumentNullException"> <paramref name="value"/> is null. </exception>
 20        public AsyncStatus(string value)
 21        {
 222            _value = value ?? throw new ArgumentNullException(nameof(value));
 223        }
 24
 25        private const string StartedValue = "Started";
 26        private const string CompletedValue = "Completed";
 27        private const string FailedValue = "Failed";
 28
 29        /// <summary> Async operation has started. </summary>
 030        public static AsyncStatus Started { get; } = new AsyncStatus(StartedValue);
 31        /// <summary> Async operation has completed. </summary>
 032        public static AsyncStatus Completed { get; } = new AsyncStatus(CompletedValue);
 33        /// <summary> Async operation failed to complete. </summary>
 034        public static AsyncStatus Failed { get; } = new AsyncStatus(FailedValue);
 35        /// <summary> Determines if two <see cref="AsyncStatus"/> values are the same. </summary>
 036        public static bool operator ==(AsyncStatus left, AsyncStatus right) => left.Equals(right);
 37        /// <summary> Determines if two <see cref="AsyncStatus"/> values are not the same. </summary>
 038        public static bool operator !=(AsyncStatus left, AsyncStatus right) => !left.Equals(right);
 39        /// <summary> Converts a string to a <see cref="AsyncStatus"/>. </summary>
 040        public static implicit operator AsyncStatus(string value) => new AsyncStatus(value);
 41
 42        /// <inheritdoc />
 43        [EditorBrowsable(EditorBrowsableState.Never)]
 044        public override bool Equals(object obj) => obj is AsyncStatus other && Equals(other);
 45        /// <inheritdoc />
 046        public bool Equals(AsyncStatus other) => string.Equals(_value, other._value, StringComparison.InvariantCultureIg
 47
 48        /// <inheritdoc />
 49        [EditorBrowsable(EditorBrowsableState.Never)]
 050        public override int GetHashCode() => _value?.GetHashCode() ?? 0;
 51        /// <inheritdoc />
 052        public override string ToString() => _value;
 53    }
 54}