SaaS CMS has officially launched! Learn more now.

Class ActivityEventArgs

Base class for activity related event arguments.

Inheritance
System.Object
ActivityEventArgs
Namespace: EPiServer.DataAbstraction.Activities
Assembly: EPiServer.dll
Version: 12.0.3
Syntax
public abstract class ActivityEventArgs : EventArgs

Constructors

ActivityEventArgs(Activity, IEnumerable<Uri>)

Creates a new instance of ActivityEventArgs

Declaration
protected ActivityEventArgs(Activity activity, IEnumerable<Uri> associations)
Parameters
Type Name Description
Activity activity

The related activity.

System.Collections.Generic.IEnumerable<System.Uri> associations

All associated items

Properties

Activity

The related activity.

Declaration
public virtual Activity Activity { get; }
Property Value
Type Description
Activity

Associations

All items associated with the activity.

Declaration
public IEnumerable<Uri> Associations { get; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<System.Uri>

Extension Methods