NameKey.Inequality Operator

Definition

Determines whether two objects are different.

Overloads

Inequality(NameKey, NameKey)

Determines whether the objects represented by the two specified NameKey values are different.

Inequality(NameKey, Object)

Determines whether the object represented by the specified NameKey is different than the specified Object.

Inequality(Object, NameKey)

Determines whether the specified Object is different than the object represented by the specified NameKey.

Inequality(NameKey, NameKey)

Determines whether the objects represented by the two specified NameKey values are different.

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

Parameters

leftOperand
NameKey

A NameKey object that represents the first object to compare.

rightOperand
NameKey

A NameKey object that represents the second object to compare.

Returns

True if the two objects are different; otherwise, false.

Applies to

Inequality(NameKey, Object)

Determines whether the object represented by the specified NameKey is different than the specified Object.

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

Parameters

leftOperand
NameKey

A NameKey object that represents the first object to compare.

obj
Object

An Object that specifies the second object to compare.

Returns

True if the two objects are different; otherwise, false.

Applies to

Inequality(Object, NameKey)

Determines whether the specified Object is different than the object represented by the specified NameKey.

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

Parameters

obj
Object

An Object that specifies the first object to compare.

rightOperand
NameKey

A NameKey object that represents the second object to compare.

Returns

True if the two objects are different; otherwise, false.

Applies to