CollectorConfigStore.Key.Equality Operator (CollectorConfigStore.Key, Object)
Does a boolean equality comparision between the object sent as a parameter and the left hand side of the key.
Namespace: Microsoft.SqlServer.Management.Collector
Assembly: Microsoft.SqlServer.Management.Collector (in Microsoft.SqlServer.Management.Collector.dll)
Syntax
'Declaration
Public Shared Operator = ( _
lhs As CollectorConfigStore.Key, _
obj As Object _
) As Boolean
'Usage
Dim lhs As CollectorConfigStore.Key
Dim obj As Object
Dim returnValue As Boolean
returnValue = (lhs = obj)
public static bool operator ==(
CollectorConfigStore.Key lhs,
Object obj
)
public:
static bool operator ==(
CollectorConfigStore.Key^ lhs,
Object^ obj
)
static let inline(=)
lhs:CollectorConfigStore.Key *
obj:Object : bool
JScript supports the use of overloaded operators, but not the declaration of new ones.
Parameters
- lhs
Type: Microsoft.SqlServer.Management.Collector.CollectorConfigStore.Key
A Key object containing the left hand side of the key.
- obj
Type: System.Object
A Key object for comparison.
Return Value
Type: System.Boolean
A Boolean value that returns TRUE when:
both sides are NULL
both sides are not NULL AND lhs is a key AND the keys are equal
Remarks
This namespace, class, or member is supported only in version 2.0 of the Microsoft .NET Framework.