Interface IActivityQueryService
Interface for querying recorded Activities.
Namespace: EPiServer.DataAbstraction.Activities
Assembly: EPiServer.dll
Version: 11.20.7Syntax
public interface IActivityQueryService
Methods
ListActivitiesAsync(ActivityQuery)
Lists all activities matching the provided query
.
Declaration
Task<IEnumerable<Activity>> ListActivitiesAsync(ActivityQuery query)
Parameters
Type | Name | Description |
---|---|---|
ActivityQuery | query | The query specifying which activities to get. |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Activity>> | The matching activities. |