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 IActivityTypeProvider

Provider of available ActivityType in this solution.

Namespace: EPiServer.DataAbstraction.Activities
Assembly: EPiServer.dll
Version: 10.10.4
Syntax
public interface IActivityTypeProvider

Methods

Get(String)

Get the registered activity type with the provided name

Declaration
ActivityType Get(string name)
Parameters
Type Name Description
System.String name
Returns
Type Description
ActivityType

An activity type if found; otherwise null.

List()

List all registered activity types

Declaration
IEnumerable<ActivityType> List()
Returns
Type Description
System.Collections.Generic.IEnumerable<ActivityType>

A list of activity types.

Extension Methods