A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More

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