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