Class ProjectActivityDeletedEventArgs
Event argument used for ActivityDeleted
Inheritance
System.Object
    ProjectActivityDeletedEventArgs
  Namespace: EPiServer.DataAbstraction.Activities
Assembly: EPiServer.dll
Version: 12.0.3Syntax
public class ProjectActivityDeletedEventArgs : EventArgsConstructors
ProjectActivityDeletedEventArgs(Int64, IEnumerable<Int32>)
Creates a new instance of ProjectActivityDeletedEventArgs
Declaration
public ProjectActivityDeletedEventArgs(long activityId, IEnumerable<int> projectIds)Parameters
| Type | Name | Description | 
|---|---|---|
| System.Int64 | activityId | The id of the activity that was deleted. | 
| System.Collections.Generic.IEnumerable<System.Int32> | projectIds | The associated projects for the deleted item. | 
Properties
ActivityID
The id of the deleted activity.
Declaration
public virtual long ActivityID { get; }Property Value
| Type | Description | 
|---|---|
| System.Int64 | 
ProjectIds
The id for all assoicated projects.
Declaration
public IEnumerable<int> ProjectIds { get; }Property Value
| Type | Description | 
|---|---|
| System.Collections.Generic.IEnumerable<System.Int32> | 
