Get a list of commit points that lie within a specified date/time range

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

Syntax

C#
IEnumerable<ICommitPointInfo> GetCommitPoints(
	string storeName,
	DateTime latest,
	DateTime earliest,
	int skip,
	int take
)
Visual Basic
Function GetCommitPoints ( 
	storeName As String,
	latest As DateTime,
	earliest As DateTime,
	skip As Integer,
	take As Integer
) As IEnumerable(Of ICommitPointInfo)
Visual C++
IEnumerable<ICommitPointInfo^>^ GetCommitPoints(
	String^ storeName, 
	DateTime latest, 
	DateTime earliest, 
	int skip, 
	int take
)
F#
abstract GetCommitPoints : 
        storeName : string * 
        latest : DateTime * 
        earliest : DateTime * 
        skip : int * 
        take : int -> IEnumerable<ICommitPointInfo> 

Parameters

storeName
Type: System..::..String
The name of the store to examine
latest
Type: System..::..DateTime
The latest commit date of commit points to be retrieved
earliest
Type: System..::..DateTime
The earliest commit date of the commit points to be retrieved
skip
Type: System..::..Int32
The offset into the results list to return from
take
Type: System..::..Int32
The number of results to return

Return Value

Type: IEnumerable<(Of <(<'ICommitPointInfo>)>)>

[Missing <returns> documentation for "M:BrightstarDB.Client.IBrightstarService.GetCommitPoints(System.String,System.DateTime,System.DateTime,System.Int32,System.Int32)"]

Exceptions

ExceptionCondition
System..::..ArgumentExceptionRaised if skip is less than 0 or take is greater than 100.

See Also