Interface IActivityQueryService
Namespace: EPiServer.DataAbstraction.Activities
Assembly: EPiServer.dll
Version: 9.12.2Syntax
public interface IActivityQueryService
Methods
ListActivitiesAsync(ActivityQuery)
Lists all activities matching the 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. |