Event.Key.Inequality Operator

Definition

Overloads

Inequality(Event+Key, Event+Key)

Implements the operator !=.

Inequality(Event+Key, Object)

Implements the operator !=.

Inequality(Object, Event+Key)

Implements the operator !=.

Inequality(Event+Key, Event+Key)

Implements the operator !=.

public static bool operator != (Microsoft.SqlServer.Management.XEvent.Event.Key leftOperand, Microsoft.SqlServer.Management.XEvent.Event.Key rightOperand);
static member op_Inequality : Microsoft.SqlServer.Management.XEvent.Event.Key * Microsoft.SqlServer.Management.XEvent.Event.Key -> bool
Public Shared Operator != (leftOperand As Event.Key, rightOperand As Event.Key) As Boolean

Parameters

leftOperand
Event.Key

The left operand.

rightOperand
Event.Key

The right operand.

Returns

The result of the operator.

Applies to

Inequality(Event+Key, Object)

Implements the operator !=.

public static bool operator != (Microsoft.SqlServer.Management.XEvent.Event.Key leftOperand, object obj);
static member op_Inequality : Microsoft.SqlServer.Management.XEvent.Event.Key * obj -> bool
Public Shared Operator != (leftOperand As Event.Key, obj As Object) As Boolean

Parameters

leftOperand
Event.Key

The left operand.

obj
Object

The obj.

Returns

The result of the operator.

Applies to

Inequality(Object, Event+Key)

Implements the operator !=.

public static bool operator != (object obj, Microsoft.SqlServer.Management.XEvent.Event.Key rightOperand);
static member op_Inequality : obj * Microsoft.SqlServer.Management.XEvent.Event.Key -> bool
Public Shared Operator != (obj As Object, rightOperand As Event.Key) As Boolean

Parameters

obj
Object

The obj.

rightOperand
Event.Key

The right operand.

Returns

The result of the operator.

Applies to