IdKey.Inequality Operator

Definition

Determines whether the two specified key objects have different values.

Overloads

Inequality(IdKey, IdKey)

Indicates whether the two specified key objects have different values using the specified operands.

Inequality(IdKey, Object)

Indicates whether the specified object and the left-hand side of the key are unequal.

Inequality(Object, IdKey)

Indicates whether the specified object and the right-hand side of the key are unequal.

Inequality(IdKey, IdKey)

Indicates whether the two specified key objects have different values using the specified operands.

public:
 static bool operator !=(Microsoft::SqlServer::Management::IntegrationServices::IdKey ^ leftOperand, Microsoft::SqlServer::Management::IntegrationServices::IdKey ^ rightOperand);
public static bool operator != (Microsoft.SqlServer.Management.IntegrationServices.IdKey leftOperand, Microsoft.SqlServer.Management.IntegrationServices.IdKey rightOperand);
static member op_Inequality : Microsoft.SqlServer.Management.IntegrationServices.IdKey * Microsoft.SqlServer.Management.IntegrationServices.IdKey -> bool
Public Shared Operator != (leftOperand As IdKey, rightOperand As IdKey) As Boolean

Parameters

leftOperand
IdKey

A IdKey object that represents the left-hand side of the key to compare.

rightOperand
IdKey

A IdKey object that represents the right-hand side of the key to compare.

Returns

true if the two specified key objects have different values using the specified operands; otherwise, false.

Applies to

Inequality(IdKey, Object)

Indicates whether the specified object and the left-hand side of the key are unequal.

public:
 static bool operator !=(Microsoft::SqlServer::Management::IntegrationServices::IdKey ^ leftOperand, System::Object ^ obj);
public static bool operator != (Microsoft.SqlServer.Management.IntegrationServices.IdKey leftOperand, object obj);
static member op_Inequality : Microsoft.SqlServer.Management.IntegrationServices.IdKey * obj -> bool
Public Shared Operator != (leftOperand As IdKey, obj As Object) As Boolean

Parameters

leftOperand
IdKey

A IdKey object that represents the left-hand side of the key to compare.

obj
Object

The specified object.

Returns

true if the specified object and the left-hand side of the key are unequal; otherwise, false.

Applies to

Inequality(Object, IdKey)

Indicates whether the specified object and the right-hand side of the key are unequal.

public:
 static bool operator !=(System::Object ^ obj, Microsoft::SqlServer::Management::IntegrationServices::IdKey ^ rightOperand);
public static bool operator != (object obj, Microsoft.SqlServer.Management.IntegrationServices.IdKey rightOperand);
static member op_Inequality : obj * Microsoft.SqlServer.Management.IntegrationServices.IdKey -> bool
Public Shared Operator != (obj As Object, rightOperand As IdKey) As Boolean

Parameters

obj
Object

The specified object.

rightOperand
IdKey

A IdKey object that represents the right-hand side of the key to compare.

Returns

true if the specified object and the right-hand side of the key are unequal; otherwise, false.

Applies to