IAnalyticsItemData.GetDailyData method
Gets the historical data by day for the item or rollup scope.
Namespace: Microsoft.Office.Server.Search.Analytics
Assembly: Microsoft.Office.Server.Search.Applications (in Microsoft.Office.Server.Search.Applications.dll)
Syntax
'Declaration
Sub GetDailyData ( _
day As DateTime, _
<OutAttribute> ByRef hits As Integer, _
<OutAttribute> ByRef uniqueUsers As Integer _
)
'Usage
Dim instance As IAnalyticsItemData
Dim day As DateTime
Dim hits As Integer
Dim uniqueUsers As Integer
instance.GetDailyData(day, hits, uniqueUsers)
void GetDailyData(
DateTime day,
out int hits,
out int uniqueUsers
)
Parameters
day
Type: System.DateTimeThe day for which data is to be collected.
hits
Type: System.Int32The number of hits recorded for the specified day.
uniqueUsers
Type: System.Int32The number of unique users on the specified day.