The recording of the first ever ReactiveUI virtual conference is available on our YouTube Channel.

Recorded<T>.Equals(Object)

Recorded<T>.Equals Method (Object)

Checks whether the given object is equal to the current instance.

Namespace:  Microsoft.Reactive.Testing
Assembly:  Microsoft.Reactive.Testing (in Microsoft.Reactive.Testing.dll)

Syntax

'Declaration
Public Overrides Function Equals ( _
    obj As Object _
) As Boolean
'Usage
Dim instance As Recorded
Dim obj As Object
Dim returnValue As Boolean

returnValue = instance.Equals(obj)
public override bool Equals(
    Object obj
)
public:
virtual bool Equals(
    Object^ obj
) override
abstract Equals : 
        obj:Object -> bool 
override Equals : 
        obj:Object -> bool 
public override function Equals(
    obj : Object
) : boolean

Parameters

Return Value

Type: System.Boolean
True if both objects are equal; otherwise, false.

See Also

Reference

Recorded<T> Structure

Equals Overload

Microsoft.Reactive.Testing Namespace

Recorded<T>.Equals Method (Recorded<T>)

Checks whether the given recorded object is equal to the current instance.

Namespace:  Microsoft.Reactive.Testing
Assembly:  Microsoft.Reactive.Testing (in Microsoft.Reactive.Testing.dll)

Syntax

'Declaration
Public Function Equals ( _
    other As Recorded(Of T) _
) As Boolean
'Usage
Dim instance As Recorded
Dim other As Recorded(Of T)
Dim returnValue As Boolean

returnValue = instance.Equals(other)
public bool Equals(
    Recorded<T> other
)
public:
virtual bool Equals(
    Recorded<T> other
) sealed
abstract Equals : 
        other:Recorded<'T> -> bool 
override Equals : 
        other:Recorded<'T> -> bool 
public final function Equals(
    other : Recorded<T>
) : boolean

Parameters

Return Value

Type: System.Boolean
True if both objects are equal; otherwise, false.

Implements

IEquatable<T>.Equals(T)

See Also

Reference

Recorded<T> Structure

Equals Overload

Microsoft.Reactive.Testing Namespace

Recorded<T>.Equals Method

Include Protected Members
Include Inherited Members

Checks whether the given object is equal to the current instance.

This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.

Overload List

NameDescriptionPublic methodEquals(Object)Checks whether the given object is equal to the current instance. (Overrides ValueType.Equals(Object).)Public methodEquals(Recorded)Checks whether the given recorded object is equal to the current instance.Top

See Also

Reference

Recorded<T> Structure

Microsoft.Reactive.Testing Namespace