Lingua

TableErrorCode.Inequality Operator

Definition

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

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

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

Returns

Applies to