Target.Key.Inequality Operator (Target.Key, Object)
Determines whether a Target.Key object is not equal to another object.
Namespace: Microsoft.SqlServer.Management.XEvent
Assembly: Microsoft.SqlServer.Management.XEvent (in Microsoft.SqlServer.Management.XEvent.dll)
Syntax
'Declaration
Public Shared Operator <> ( _
leftOperand As Target.Key, _
obj As Object _
) As Boolean
'Usage
Dim leftOperand As Target.Key
Dim obj As Object
Dim returnValue As Boolean
returnValue = (leftOperand <> obj)
public static bool operator !=(
Target.Key leftOperand,
Object obj
)
public:
static bool operator !=(
Target.Key^ leftOperand,
Object^ obj
)
static let inline(<>)
leftOperand:Target.Key *
obj:Object : bool
JScript supports the use of overloaded operators, but not the declaration of new ones.
Parameters
- leftOperand
Type: Microsoft.SqlServer.Management.XEvent.Target.Key
A Target.Key object.
- obj
Type: System.Object
A System.Object to compare.
Return Value
Type: System.Boolean
A Boolean value that specifies the outcome of performing an inequality operation on two objects. If True, the two objects are not equal; otherwise False.