Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Checks whether the two given subscription objects are not equal.
Namespace: Microsoft.Reactive.Testing
Assembly: Microsoft.Reactive.Testing (in Microsoft.Reactive.Testing.dll)
Syntax
'Declaration
Public Shared Operator <> ( _
left As Subscription, _
right As Subscription _
) As Boolean
'Usage
Dim left As Subscription
Dim right As Subscription
Dim returnValue As Boolean
returnValue = (left <> right)
public static bool operator !=(
Subscription left,
Subscription right
)
public:
static bool operator !=(
Subscription left,
Subscription right
)
static let inline (<>)
left:Subscription *
right:Subscription : bool
JScript supports the use of overloaded operators, but not the declaration of new ones.
Parameters
- left
Type: Microsoft.Reactive.Testing.Subscription
The first object to check for equality.
- right
Type: Microsoft.Reactive.Testing.Subscription
The second object to check for equality.
Return Value
Type: System.Boolean
true if both objects are not equal; otherwise, false.