Returns the commit points of a Brightstar store
            
Namespace: BrightstarDB.ClientAssembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)
Syntax
| C# | 
|---|
IEnumerable<ICommitPointInfo> GetCommitPoints(
	string storeName,
	int skip,
	int take
)  | 
| Visual Basic | 
|---|
Function GetCommitPoints ( 
	storeName As String,
	skip As Integer,
	take As Integer
) As IEnumerable(Of ICommitPointInfo)  | 
| Visual C++ | 
|---|
IEnumerable<ICommitPointInfo^>^ GetCommitPoints(
	String^ storeName, 
	int skip, 
	int take
)  | 
| F# | 
|---|
abstract GetCommitPoints : 
        storeName : string * 
        skip : int * 
        take : int -> IEnumerable<ICommitPointInfo> 
 | 
Parameters
- storeName
 - Type: System..::..String
The name of the store to examine 
- skip
 - Type: System..::..Int32
How many commit points to skip over 
- take
 - Type: System..::..Int32
How many commit points to return. Max allowed value is 100 
Return Value
Type: 
IEnumerable<(Of <(<'ICommitPointInfo>)>)>An enumeration over the store commit points
See Also