Creates a new cached result

Namespace: BrightstarDB.Client
Assembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)

Syntax

C#
public CachedQueryResult(
	DateTime timestamp,
	string result
)
Visual Basic
Public Sub New ( 
	timestamp As DateTime,
	result As String
)
Visual C++
public:
CachedQueryResult(
	DateTime timestamp, 
	String^ result
)
F#
new : 
        timestamp : DateTime * 
        result : string -> CachedQueryResult

Parameters

timestamp
Type: System..::..DateTime
The timestamp for the result
result
Type: System..::..String
The result serialized as a string

See Also