London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!

Interface IActivityQueryService

Interface for querying recorded Activities.

Namespace: EPiServer.DataAbstraction.Activities
Assembly: EPiServer.dll
Version: 10.10.4
Syntax
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.

Extension Methods