IntegrationServices.Key.Inequality Operator

Definition

Determines whether the two specified key objects have different values.

Overloads

Inequality(IntegrationServices+Key, IntegrationServices+Key)

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

Inequality(IntegrationServices+Key, Object)

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

Inequality(Object, IntegrationServices+Key)

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

Inequality(IntegrationServices+Key, IntegrationServices+Key)

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

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

Parameters

leftOperand
IntegrationServices.Key

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

rightOperand
IntegrationServices.Key

A IntegrationServices.Key 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(IntegrationServices+Key, Object)

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

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

Parameters

leftOperand
IntegrationServices.Key

A IntegrationServices.Key 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, IntegrationServices+Key)

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::IntegrationServices::Key ^ rightOperand);
public static bool operator != (object obj, Microsoft.SqlServer.Management.IntegrationServices.IntegrationServices.Key rightOperand);
static member op_Inequality : obj * Microsoft.SqlServer.Management.IntegrationServices.IntegrationServices.Key -> bool
Public Shared Operator != (obj As Object, rightOperand As IntegrationServices.Key) As Boolean

Parameters

obj
Object

The specified object.

rightOperand
IntegrationServices.Key

A IntegrationServices.Key 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