Class ActivityDeletedEventArgs
Event argument used for ActivityCreated and ActivityDeleted
Inheritance
System.Object
ActivityDeletedEventArgs
Namespace: EPiServer.DataAbstraction.Activities
Assembly: EPiServer.dll
Version: 12.0.3Syntax
public class ActivityDeletedEventArgs : EventArgs
Constructors
ActivityDeletedEventArgs(Int64, IEnumerable<Uri>)
Creates a new instance of ActivityDeletedEventArgs
Declaration
public ActivityDeletedEventArgs(long activityId, IEnumerable<Uri> associations)
Parameters
Type | Name | Description |
---|---|---|
System.Int64 | activityId | The id of the activity that was deleted. |
System.Collections.Generic.IEnumerable<System.Uri> | associations | The associations for the deleted item. |
Properties
ActivityID
The id of the deleted activity.
Declaration
public virtual long ActivityID { get; }
Property Value
Type | Description |
---|---|
System.Int64 |
Associations
All items associated with the activity.
Declaration
public IEnumerable<Uri> Associations { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<System.Uri> |