IntegrationServices.Key.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(IntegrationServices+Key, IntegrationServices+Key) |
Indicates whether the key objects have the same value using the specified operands. |
Equality(IntegrationServices+Key, Object) |
Indicates whether the specified object and the left-hand side of the key are equal. |
Equality(Object, IntegrationServices+Key) |
Indicates whether the specified object and the right-hand side of the key are equal. |
Equality(IntegrationServices+Key, IntegrationServices+Key)
Indicates whether the key objects have the same value using the specified operands.
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
Parameters
- leftOperand
- IntegrationServices.Key
A IntegrationServices.Key object that represents the left-hand side of the key to compare.
- rightOperand
- IntegrationServices.Key
A IntegrationServices.Key object that represents the right-hand side of the key to compare.
Returns
true if the key objects have the same value using the specified operands; otherwise, false.
Applies to
Equality(IntegrationServices+Key, Object)
Indicates whether the specified object and the left-hand side of the key are equal.
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
Parameters
- leftOperand
- IntegrationServices.Key
A IntegrationServices.Key object that represents the left-hand side of the key to compare.
- 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, IntegrationServices+Key)
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::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
Parameters
- obj
- Object
The specified object.
- rightOperand
- IntegrationServices.Key
A IntegrationServices.Key object that represents the right-hand side of the key to compare.
Returns
true if the specified object and the right-hand side of the key are equal; otherwise, false.