SaaS CMS has officially launched! Learn more now.

Class ActivityDeletedEventArgs

Event argument used for ActivityCreated and ActivityDeleted

Inheritance
System.Object
System.EventArgs
ActivityDeletedEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: EPiServer.DataAbstraction.Activities
Assembly: EPiServer.dll
Version: 11.20.7
Syntax
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>

Extension Methods