IntegrationServices.Key.Inequality 演算子

定義

2 つの指定したキー オブジェクトが異なる値を持つかどうかを判定します。

オーバーロード

Inequality(IntegrationServices+Key, IntegrationServices+Key)

指定したオペランドを使用して、2 つの指定したキー オブジェクトが異なる値を持っているかどうかを示します。

Inequality(IntegrationServices+Key, Object)

指定したオブジェクトとキーの左辺が等しくないかどうかを示します。

Inequality(Object, IntegrationServices+Key)

指定したオブジェクトとキーの右辺が等しくないかどうかを示します。

Inequality(IntegrationServices+Key, IntegrationServices+Key)

指定したオペランドを使用して、2 つの指定したキー オブジェクトが異なる値を持っているかどうかを示します。

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

パラメーター

leftOperand
IntegrationServices.Key

比較するキーの左辺を表す IntegrationServices.Key オブジェクト。

rightOperand
IntegrationServices.Key

比較するキーの右辺を表す IntegrationServices.Key オブジェクト。

戻り値

指定した 2 つのキー オブジェクトが、指定されたオペランドを使用して異なる値を持つ場合は true。それ以外の場合は false。

適用対象

Inequality(IntegrationServices+Key, Object)

指定したオブジェクトとキーの左辺が等しくないかどうかを示します。

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

パラメーター

leftOperand
IntegrationServices.Key

比較するキーの左辺を表す IntegrationServices.Key オブジェクト。

obj
Object

指定されたオブジェクト。

戻り値

指定したオブジェクトとキーの左側が等しくない場合は true。それ以外の場合は false。

適用対象

Inequality(Object, IntegrationServices+Key)

指定したオブジェクトとキーの右辺が等しくないかどうかを示します。

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

パラメーター

obj
Object

指定されたオブジェクト。

rightOperand
IntegrationServices.Key

比較するキーの右辺を表す IntegrationServices.Key オブジェクト。

戻り値

指定したオブジェクトとキーの右側が等しくない場合は true。それ以外の場合は false。

適用対象