Retrieves a range of statistics records for a store

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

Syntax

C#
public IEnumerable<IStoreStatistics> GetStatistics(
	string storeName,
	DateTime latest,
	DateTime earlierst,
	int skip,
	int take
)
Visual Basic
Public Function GetStatistics ( 
	storeName As String,
	latest As DateTime,
	earlierst As DateTime,
	skip As Integer,
	take As Integer
) As IEnumerable(Of IStoreStatistics)
Visual C++
public:
virtual IEnumerable<IStoreStatistics^>^ GetStatistics(
	String^ storeName, 
	DateTime latest, 
	DateTime earlierst, 
	int skip, 
	int take
) sealed
F#
abstract GetStatistics : 
        storeName : string * 
        latest : DateTime * 
        earlierst : DateTime * 
        skip : int * 
        take : int -> IEnumerable<IStoreStatistics> 
override 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.

Implements

IBrightstarService..::..GetStatistics(String, DateTime, DateTime, Int32, Int32)

Exceptions

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

See Also