Share via


IntegrationServices.Key.Equality Operador

Definición

Determina si los dos objetos de clave tienen el mismo valor.

Sobrecargas

Equality(IntegrationServices+Key, IntegrationServices+Key)

Indica si los objetos de clave tienen el mismo valor, utilizando los operandos especificados.

Equality(IntegrationServices+Key, Object)

Indica si el objeto especificado y el lado izquierdo de la clave son iguales.

Equality(Object, IntegrationServices+Key)

Indica si el objeto especificado y el lado derecho de la clave son iguales.

Equality(IntegrationServices+Key, IntegrationServices+Key)

Indica si los objetos de clave tienen el mismo valor, utilizando los operandos especificados.

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

Parámetros

leftOperand
IntegrationServices.Key

Objeto IntegrationServices.Key que representa el lado izquierdo de la clave que se va a comparar.

rightOperand
IntegrationServices.Key

Objeto IntegrationServices.Key que representa el lado derecho de la clave que se va a comparar.

Devoluciones

true si los objetos de clave tienen el mismo valor utilizando los operandos especificados; de lo contrario, false.

Se aplica a

Equality(IntegrationServices+Key, Object)

Indica si el objeto especificado y el lado izquierdo de la clave son iguales.

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

Parámetros

leftOperand
IntegrationServices.Key

Objeto IntegrationServices.Key que representa el lado izquierdo de la clave que se va a comparar.

obj
Object

El objeto especificado.

Devoluciones

true si el objeto especificado y el lado izquierdo de la clave son iguales; de lo contrario, false.

Se aplica a

Equality(Object, IntegrationServices+Key)

Indica si el objeto especificado y el lado derecho de la clave son iguales.

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

Parámetros

obj
Object

Objeto especificado.

rightOperand
IntegrationServices.Key

Objeto IntegrationServices.Key que representa el lado derecho de la clave que se va a comparar.

Devoluciones

true si el objeto especificado y el lado derecho de la clave son iguales; de lo contrario, false.

Se aplica a