TableErrorCode.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
| Name | Description |
|---|---|
| Equality(TableErrorCode, String) |
Determines if a TableErrorCode and a string are equal. |
| Equality(TableErrorCode, TableErrorCode) |
Determines if two TableErrorCode values are the same. |
| Equality(String, TableErrorCode) |
Determines if a string and a TableErrorCode are equal. |
Equality(TableErrorCode, String)
- Source:
- TableErrorCode.cs
Determines if a TableErrorCode and a string are equal.
public static bool operator ==(Azure.Data.Tables.Models.TableErrorCode code, string value);
static member ( = ) : Azure.Data.Tables.Models.TableErrorCode * string -> bool
Public Shared Operator == (code As TableErrorCode, value As String) As Boolean
Parameters
- code
- TableErrorCode
- value
- String
Returns
Applies to
Equality(TableErrorCode, TableErrorCode)
- Source:
- TableErrorCode.cs
Determines if two TableErrorCode values are the same.
public static bool operator ==(Azure.Data.Tables.Models.TableErrorCode left, Azure.Data.Tables.Models.TableErrorCode right);
static member ( = ) : Azure.Data.Tables.Models.TableErrorCode * Azure.Data.Tables.Models.TableErrorCode -> bool
Public Shared Operator == (left As TableErrorCode, right As TableErrorCode) As Boolean
Parameters
- left
- TableErrorCode
- right
- TableErrorCode
Returns
Applies to
Equality(String, TableErrorCode)
- Source:
- TableErrorCode.cs
Determines if a string and a TableErrorCode are equal.
public static bool operator ==(string value, Azure.Data.Tables.Models.TableErrorCode code);
static member ( = ) : string * Azure.Data.Tables.Models.TableErrorCode -> bool
Public Shared Operator == (value As String, code As TableErrorCode) As Boolean
Parameters
- value
- String
- code
- TableErrorCode