IntegrationServices.Key.Equality 演算子

定義

2 つのキー オブジェクトが同一の値を持っているかどうかを判定します。

オーバーロード

Equality(IntegrationServices+Key, IntegrationServices+Key)

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

Equality(IntegrationServices+Key, Object)

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

Equality(Object, IntegrationServices+Key)

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

Equality(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 ( = ) : 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 オブジェクト。

戻り値

指定したオペランドを使用してキー オブジェクトの値が同じである場合は true。それ以外の場合は false。

適用対象

Equality(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 ( = ) : 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。

適用対象

Equality(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 ( = ) : 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。

適用対象