Class ContentActivityFeed
A feed to read activities related to a content. Can be used to retrieve content activities.
Inheritance
Namespace: EPiServer.DataAbstraction.Activities
Assembly: EPiServer.dll
Version: 12.0.3Syntax
public abstract class ContentActivityFeed : Object
Constructors
ContentActivityFeed()
Declaration
protected ContentActivityFeed()
Properties
Instance
Gets the currently configured instance of the Content
Declaration
public static ContentActivityFeed Instance { get; }
Property Value
Type | Description |
---|---|
Content |
Methods
ListActivitiesAsync(ContentReference)
List all Activity instances for a content version.
Declaration
public abstract Task<IEnumerable<Activity>> ListActivitiesAsync(ContentReference contentLink)
Parameters
Type | Name | Description |
---|---|---|
Content |
contentLink | The content to get activities for |
Returns
Type | Description |
---|---|
System. |
A list of activities related to the content version |
ListActivitiesAsync(IEnumerable<ContentReference>)
List all Activity instances for a set of content versions.
Declaration
public virtual Task<IEnumerable<Activity>> ListActivitiesAsync(IEnumerable<ContentReference> contentLinks)
Parameters
Type | Name | Description |
---|---|---|
System. |
contentLinks | The content to get activities for |
Returns
Type | Description |
---|---|
System. |
ListActivitiesAsync(IEnumerable<ContentReference>, Int64, Int32)
List a paged set of Activity instances for a set of content versions.
Declaration
public abstract Task<PagedActivityResult> ListActivitiesAsync(IEnumerable<ContentReference> contentLinks, long startIndex, int maxCount)
Parameters
Type | Name | Description |
---|---|---|
System. |
contentLinks | The content to get activities for |
System. |
startIndex | The index for where only activities with a lower index will be returned. If no startIndex is given it will return the latest activities. |
System. |
maxCount | The maximum number of activities to return. |
Returns
Type | Description |
---|---|
System. |
LoadActivityAsync(Int64)
Loads a single Activity together with related comments.
Declaration
public abstract Task<Activity> LoadActivityAsync(long activityId)
Parameters
Type | Name | Description |
---|---|---|
System. |
activityId | The identity of the activity |
Returns
Type | Description |
---|---|
System. |
An activity |