SearchServiceApplication.GetGlobalAnalyticsItemDataBatch method
Gets the analytics item data for a given event processed since a particular time period.
Namespace: Microsoft.Office.Server.Search.Administration
Assembly: Microsoft.Office.Server.Search (in Microsoft.Office.Server.Search.dll)
Syntax
'Declaration
Public Function GetGlobalAnalyticsItemDataBatch ( _
eventType As Integer, _
since As DateTime, _
batchSize As Integer, _
token As ContinuationTokenItemData _
) As AnalyticsItemDataBatch
'Usage
Dim instance As SearchServiceApplication
Dim eventType As Integer
Dim since As DateTime
Dim batchSize As Integer
Dim token As ContinuationTokenItemData
Dim returnValue As AnalyticsItemDataBatch
returnValue = instance.GetGlobalAnalyticsItemDataBatch(eventType, _
since, batchSize, token)
public AnalyticsItemDataBatch GetGlobalAnalyticsItemDataBatch(
int eventType,
DateTime since,
int batchSize,
ContinuationTokenItemData token
)
Parameters
eventType
Type: System.Int32The event type.
since
Type: System.DateTimeOnly items processed after this time stamp will be taken into consideration.
batchSize
Type: System.Int32The number of analytics items in a batch. This value must be more than 1000.
token
Type: Microsoft.Office.Server.Search.Analytics.ContinuationTokenItemDataThe continuation token for the next batch of data.
Return value
Type: Microsoft.Office.Server.Search.Analytics.AnalyticsItemDataBatch
The list of items processed since the given timestamp and the continuation token.
Implements
See also
Reference
SearchServiceApplication class