QueueErrorCode.Equality Operator
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Equality(String, QueueErrorCode) |
Overloading equality for string==QueueErrorCode |
Equality(QueueErrorCode, QueueErrorCode) |
Determines if two QueueErrorCode values are the same. |
Equality(QueueErrorCode, String) |
Overloading equality for QueueErrorCode==string |
Equality(String, QueueErrorCode)
- Source:
- QueueErrorCode.cs
- Source:
- QueueErrorCode.cs
Overloading equality for string==QueueErrorCode
public static bool operator == (string value, Azure.Storage.Queues.Models.QueueErrorCode code);
static member ( = ) : string * Azure.Storage.Queues.Models.QueueErrorCode -> bool
Public Shared Operator == (value As String, code As QueueErrorCode) As Boolean
Parameters
- value
- String
- code
- QueueErrorCode
Returns
Applies to
Equality(QueueErrorCode, QueueErrorCode)
- Source:
- QueueErrorCode.cs
- Source:
- QueueErrorCode.cs
Determines if two QueueErrorCode values are the same.
public static bool operator == (Azure.Storage.Queues.Models.QueueErrorCode left, Azure.Storage.Queues.Models.QueueErrorCode right);
static member ( = ) : Azure.Storage.Queues.Models.QueueErrorCode * Azure.Storage.Queues.Models.QueueErrorCode -> bool
Public Shared Operator == (left As QueueErrorCode, right As QueueErrorCode) As Boolean
Parameters
- left
- QueueErrorCode
The first QueueErrorCode to compare.
- right
- QueueErrorCode
The second QueueErrorCode to compare.
Returns
True if left
and right
are the same; otherwise, false.
Applies to
Equality(QueueErrorCode, String)
- Source:
- QueueErrorCode.cs
- Source:
- QueueErrorCode.cs
Overloading equality for QueueErrorCode==string
public static bool operator == (Azure.Storage.Queues.Models.QueueErrorCode code, string value);
static member ( = ) : Azure.Storage.Queues.Models.QueueErrorCode * string -> bool
Public Shared Operator == (code As QueueErrorCode, value As String) As Boolean
Parameters
- code
- QueueErrorCode
- value
- String
Returns
Applies to
Azure SDK for .NET