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.
Indicates whether this instance and other are equal.
Namespace: System.Reactive
Assembly: System.Reactive (in System.Reactive.dll)
Syntax
'Declaration
Public MustOverride Function Equals ( _
other As Notification(Of T) _
) As Boolean
'Usage
Dim instance As Notification
Dim other As Notification(Of T)
Dim returnValue As Boolean
returnValue = instance.Equals(other)
public abstract bool Equals(
Notification<T> other
)
public:
virtual bool Equals(
Notification<T>^ other
) abstract
abstract Equals :
other:Notification<'T> -> bool
public abstract function Equals(
other : Notification<T>
) : boolean
Parameters
- other
Type: System.Reactive.Notification<T>
The other notification to check equality with this instance.
Return Value
Type: System.Boolean
true if this instance and the other notification are equal; otherwise, false.