IdKey.Equality Operator
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Determines whether the two key objects have the same value.
Overloads
Equality(IdKey, IdKey) |
Indicates whether the key objects have the same value using the specified operands. |
Equality(IdKey, Object) |
Indicates whether the specified object and the left-hand side of the key are equal. |
Equality(Object, IdKey) |
Indicates whether the specified object and the right-hand side of the key are equal. |
Equality(IdKey, IdKey)
Indicates whether the key objects have the same value using the specified operands.
public:
static bool operator ==(Microsoft::SqlServer::Management::IntegrationServices::IdKey ^ leftOperand, Microsoft::SqlServer::Management::IntegrationServices::IdKey ^ rightOperand);
public static bool operator == (Microsoft.SqlServer.Management.IntegrationServices.IdKey leftOperand, Microsoft.SqlServer.Management.IntegrationServices.IdKey rightOperand);
static member ( = ) : Microsoft.SqlServer.Management.IntegrationServices.IdKey * Microsoft.SqlServer.Management.IntegrationServices.IdKey -> bool
Public Shared Operator == (leftOperand As IdKey, rightOperand As IdKey) As Boolean
Parameters
Returns
true if the key objects have the same value using the specified operands; otherwise, false.
Applies to
Equality(IdKey, Object)
Indicates whether the specified object and the left-hand side of the key are equal.
public:
static bool operator ==(Microsoft::SqlServer::Management::IntegrationServices::IdKey ^ leftOperand, System::Object ^ obj);
public static bool operator == (Microsoft.SqlServer.Management.IntegrationServices.IdKey leftOperand, object obj);
static member ( = ) : Microsoft.SqlServer.Management.IntegrationServices.IdKey * obj -> bool
Public Shared Operator == (leftOperand As IdKey, obj As Object) As Boolean
Parameters
- obj
- Object
The specified object.
Returns
true if the specified object and the left-hand side of the key are equal; otherwise, false.
Applies to
Equality(Object, IdKey)
Indicates whether the specified object and the right-hand side of the key are equal.
public:
static bool operator ==(System::Object ^ obj, Microsoft::SqlServer::Management::IntegrationServices::IdKey ^ rightOperand);
public static bool operator == (object obj, Microsoft.SqlServer.Management.IntegrationServices.IdKey rightOperand);
static member ( = ) : obj * Microsoft.SqlServer.Management.IntegrationServices.IdKey -> bool
Public Shared Operator == (obj As Object, rightOperand As IdKey) As Boolean
Parameters
- obj
- Object
The specified object.
Returns
true if the specified object and the right-hand side of the key are equal; otherwise, false.