Timestamped<T> Structure

Represents a timestamped value.

Namespace:  System.Reactive
Assembly:  System.Reactive (in System.Reactive.dll)

Syntax

'Declaration
<SerializableAttribute> _
Public Structure Timestamped(Of T)
'Usage
Dim instance As Timestamped(Of T)
[SerializableAttribute]
public struct Timestamped<T>
[SerializableAttribute]
generic<typename T>
public value class Timestamped
[<SealedAttribute>]
[<SerializableAttribute>]
type Timestamped<'T> =  struct end
JScript does not support generic types and methods.

Type Parameters

  • T
    The timestamped argument type.

The Timestamped<T> type exposes the following members.

Constructors

  Name Description
Public method Timestamped<T> Constructs a timestamped value.

Top

Properties

  Name Description
Public property Timestamp Gets the timestamp.
Public property Value Gets the value.

Top

Methods

  Name Description
Public method Equals Indicates whether this instance and a specified object are equal. (Overrides ValueType.Equals(Object).)
Protected method Finalize (Inherited from Object.)
Public method GetHashCode Returns the hash code for this instance. (Overrides ValueType.GetHashCode().)
Public method GetType (Inherited from Object.)
Protected method MemberwiseClone (Inherited from Object.)
Public method ToString Returns a string representation of this instance. (Overrides ValueType.ToString().)

Top

Operators

  Name Description
Public operatorStatic member Equality Indicates whether first and second arguments are equal.
Public operatorStatic member Inequality Indicates whether first and second arguments are not equal.

Top

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

System.Reactive Namespace