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!

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