Retrieves a range of statistics records for a store
            
Namespace: BrightstarDB.ClientAssembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)
Syntax
| C# | 
|---|
IEnumerable<IStoreStatistics> GetStatistics(
	string storeName,
	DateTime latest,
	DateTime earlierst,
	int skip,
	int take
)  | 
| Visual Basic | 
|---|
Function GetStatistics ( 
	storeName As String,
	latest As DateTime,
	earlierst As DateTime,
	skip As Integer,
	take As Integer
) As IEnumerable(Of IStoreStatistics)  | 
| Visual C++ | 
|---|
IEnumerable<IStoreStatistics^>^ GetStatistics(
	String^ storeName, 
	DateTime latest, 
	DateTime earlierst, 
	int skip, 
	int take
)  | 
| F# | 
|---|
abstract GetStatistics : 
        storeName : string * 
        latest : DateTime * 
        earlierst : DateTime * 
        skip : int * 
        take : int -> IEnumerable<IStoreStatistics> 
 | 
Parameters
- storeName
 - Type: System..::..String
The name of the store to retrieve statistics for 
- latest
 - Type: System..::..DateTime
The latest date to retrieve statistics for 
- earlierst
 - Type: System..::..DateTime
The earliest date to retrieve statisitcs for 
- skip
 - Type: System..::..Int32
The offset into the date-filters list to return from 
- take
 - Type: System..::..Int32
The number of results to return 
Return Value
Type: 
IEnumerable<(Of <(<'IStoreStatistics>)>)>An enumeration over the specified subset of statistics records for the store.
Exceptions
See Also