Target.Key.Inequality Operator

Definition

Overloads

Inequality(Target+Key, Target+Key)

Implements the operator !=.

Inequality(Target+Key, Object)

Implements the operator !=.

Inequality(Object, Target+Key)

Implements the operator !=.

Inequality(Target+Key, Target+Key)

Implements the operator !=.

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

Parameters

leftOperand
Target.Key

The left operand.

rightOperand
Target.Key

The right operand.

Returns

The result of the operator.

Applies to

Inequality(Target+Key, Object)

Implements the operator !=.

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

Parameters

leftOperand
Target.Key

The left operand.

obj
Object

The obj.

Returns

The result of the operator.

Applies to

Inequality(Object, Target+Key)

Implements the operator !=.

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

Parameters

obj
Object

The obj.

rightOperand
Target.Key

The right operand.

Returns

The result of the operator.

Applies to