GetStatistics method

**This method is obsolete in V.7.**

Returns an IERUCollection of Real Time Statistics that represent all the meetings that took place within the specified date range.

Each entry in the collection provides meeting usage statistics for a particular member or room as specified by the StatType parameter. Results in the collection are ordered either alphabetically by name or in reverse order by duration, depending on the value of the StatSort parameter.

Syntax


C++

HRESULT GetStatistics(
   DATE StartDate,
   DATE
EndDate,
   ERURealTimeStatisticType
StatType,
   ERURealTimeStatisticSort
StatSort,
   IERUCollection**
ppStatistics)

Scripting languages

Set Statistics = Connection.GetStatistics(
   StartDate
as Date,
   EndDate
as Date,
   StatType
as ERURealTimeStatisticType,
   StatSort
as ERURealTimeStatisticSort)

Parameters


StartDate

The beginning of the date range for the collection.

EndDate

The end of the date range for the collection.

StatType

The type of statistics to be queried (Room or Member). See the ERURealTimeStatisticType enumeration.

StartSort

The sort order of the statistics to be returned. See the ERURealTimeStatisticSort enumeration.

ppStatistics

Upon return, an IERUCollection of IERURealTimeStatistic interface pointers.

Return value


C++

The return code.

Scripting languages

An IERUCollection of Real Time Statistics.

Home

Applies to

IERURealTimeManager

See also

IERURealTimeStatistic