| | | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | | 2 | | // Licensed under the MIT License. |
| | | 3 | | |
| | | 4 | | using System.ComponentModel; |
| | | 5 | | using Azure.Core; |
| | | 6 | | |
| | | 7 | | namespace 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)] |
| | 0 | 24 | | 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)] |
| | 0 | 33 | | 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)] |
| | 0 | 42 | | public override string ToString() => base.ToString(); |
| | | 43 | | } |
| | | 44 | | } |