< Summary

Class:Azure.Messaging.ServiceBus.Management.ServiceBusManagementClientOptions
Assembly:Azure.Messaging.ServiceBus
File(s):C:\Git\azure-sdk-for-net\sdk\servicebus\Azure.Messaging.ServiceBus\src\Management\ServiceBusManagementClientOptions.cs
Covered lines:0
Uncovered lines:3
Coverable lines:3
Total lines:44
Line coverage:0% (0 of 3)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
Equals(...)-0%100%
GetHashCode()-0%100%
ToString()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\servicebus\Azure.Messaging.ServiceBus\src\Management\ServiceBusManagementClientOptions.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4using System.ComponentModel;
 5using Azure.Core;
 6
 7namespace Azure.Messaging.ServiceBus.Management
 8{
 9    /// <summary>
 10    ///   The set of options that can be specified when creating an <see cref="ServiceBusManagementClient" />
 11    ///   to configure its behavior.
 12    /// </summary>
 13    public class ServiceBusManagementClientOptions : ClientOptions
 14    {
 15        /// <summary>
 16        ///   Determines whether the specified <see cref="object" /> is equal to this instance.
 17        /// </summary>
 18        ///
 19        /// <param name="obj">The <see cref="object" /> to compare with this instance.</param>
 20        ///
 21        /// <returns><c>true</c> if the specified <see cref="object" /> is equal to this instance; otherwise, <c>false</
 22        ///
 23        [EditorBrowsable(EditorBrowsableState.Never)]
 024        public override bool Equals(object obj) => base.Equals(obj);
 25
 26        /// <summary>
 27        ///   Returns a hash code for this instance.
 28        /// </summary>
 29        ///
 30        /// <returns>A hash code for this instance, suitable for use in hashing algorithms and data structures like a ha
 31        ///
 32        [EditorBrowsable(EditorBrowsableState.Never)]
 033        public override int GetHashCode() => base.GetHashCode();
 34
 35        /// <summary>
 36        ///   Converts the instance to string representation.
 37        /// </summary>
 38        ///
 39        /// <returns>A <see cref="string" /> that represents this instance.</returns>
 40        ///
 41        [EditorBrowsable(EditorBrowsableState.Never)]
 042        public override string ToString() => base.ToString();
 43    }
 44}

Methods/Properties

Equals(...)
GetHashCode()
ToString()