Get a list of commit points that lie within a specified date/time range
            
Namespace: BrightstarDB.ClientAssembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)
Syntax
| C# | 
|---|
public IEnumerable<ICommitPointInfo> GetCommitPoints( string storeName, DateTime latest, DateTime earliest, int skip, int take )  | 
| Visual Basic | 
|---|
Public Function GetCommitPoints ( storeName As String, latest As DateTime, earliest As DateTime, skip As Integer, take As Integer ) As IEnumerable(Of ICommitPointInfo)  | 
| Visual C++ | 
|---|
public: virtual IEnumerable<ICommitPointInfo^>^ GetCommitPoints( String^ storeName, DateTime latest, DateTime earliest, int skip, int take ) sealed  | 
| F# | 
|---|
abstract GetCommitPoints : storeName : string * latest : DateTime * earliest : DateTime * skip : int * take : int -> IEnumerable<ICommitPointInfo> override GetCommitPoints : storeName : string * latest : DateTime * earliest : DateTime * skip : int * take : int -> IEnumerable<ICommitPointInfo>  | 
Parameters
- storeName
 - Type: System..::..String
 
- 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.EmbeddedBrightstarService.GetCommitPoints(System.String,System.DateTime,System.DateTime,System.Int32,System.Int32)"]
Implements
IBrightstarService..::..GetCommitPoints(String, DateTime, DateTime, Int32, Int32)
Remarks
A maximum of 100 commit points are returned in a batch, if take is greater than 100 its value is ignored and only 100 results returned.