Retrieves the most recent statistics for the specified store

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

Syntax

C#
public IStoreStatistics GetStatistics(
	string storeName
)
Visual Basic
Public Function GetStatistics ( 
	storeName As String
) As IStoreStatistics
Visual C++
public:
virtual IStoreStatistics^ GetStatistics(
	String^ storeName
) sealed
F#
abstract GetStatistics : 
        storeName : string -> IStoreStatistics 
override GetStatistics : 
        storeName : string -> IStoreStatistics 

Parameters

storeName
Type: System..::..String
The name of the store to retrieve statistics for.

Return Value

Type: IStoreStatistics
A IStoreStatistics instance containing the most recent statistics for the named store, or NULL if there are no statistics availabe for the store.

Implements

IBrightstarService..::..GetStatistics(String)

See Also