IntegrationServices.Key.Equality 运算符

定义

确定两个键对象是否具有相同值。

重载

Equality(IntegrationServices+Key, IntegrationServices+Key)

指示键对象是否具有使用指定的操作数的相同值。

Equality(IntegrationServices+Key, Object)

指示指定的对象和键的左侧是否相等。

Equality(Object, IntegrationServices+Key)

指示指定的对象和键的右侧是否相等。

Equality(IntegrationServices+Key, IntegrationServices+Key)

指示键对象是否具有使用指定的操作数的相同值。

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。

适用于