Timestamped<T> Constructor
Constructs a timestamped value.
Namespace: System.Reactive
Assembly: System.Reactive (in System.Reactive.dll)
Syntax
'Declaration
Public Sub New ( _
value As T, _
timestamp As DateTimeOffset _
)
'Usage
Dim value As T
Dim timestamp As DateTimeOffset
Dim instance As New Timestamped(value, timestamp)
public Timestamped(
T value,
DateTimeOffset timestamp
)
public:
Timestamped(
T value,
DateTimeOffset timestamp
)
new :
value:'T *
timestamp:DateTimeOffset -> Timestamped
public function Timestamped(
value : T,
timestamp : DateTimeOffset
)
Parameters
- value
Type: T
The value.
- timestamp
Type: System.DateTimeOffset
The timestamp.