Recorded<T> Constructor

Initializes a new instance of the Recorded<T> class with the specified value at the given virtual time.

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

Syntax

'Declaration
Public Sub New ( _
    time As Long, _
    value As T _
)
'Usage
Dim time As Long
Dim value As T

Dim instance As New Recorded(time, value)
public Recorded(
    long time,
    T value
)
public:
Recorded(
    long long time, 
    T value
)
new : 
        time:int64 * 
        value:'T -> Recorded
public function Recorded(
    time : long, 
    value : T
)

Parameters

  • time
    Type: System.Int64
    Virtual time the value was produced on.
  • value
    Type: T
    Value that was produced.

See Also

Reference

Recorded<T> Structure

Microsoft.Reactive.Testing Namespace