Class ProjectActivityDeletedEventArgs
Event argument used for ActivityDeleted
Inheritance
System.Object
System.EventArgs
ProjectActivityDeletedEventArgs
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.7Syntax
public class ProjectActivityDeletedEventArgs : EventArgs
Constructors
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> |