SaaS CMS has officially launched! Learn more now.

Class WorkflowDeletedEventArgs

Event rasied when a WorkflowDefinitionInstance is removed from storage. This happen for example when an instance is comleted or terminated.

Inheritance
System.Object
System.EventArgs
WorkflowDeletedEventArgs
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.WorkflowFoundation.Definitions
Assembly: EPiServer.WorkflowFoundation.dll
Version: 7.19.2
Syntax
public class WorkflowDeletedEventArgs : EventArgs

Constructors

WorkflowDeletedEventArgs(Guid, Guid)

Initializes a new instance of the WorkflowDeletedEventArgs class.

Declaration
public WorkflowDeletedEventArgs(Guid instanceId, Guid definitionId)
Parameters
Type Name Description
System.Guid instanceId

The instance id.

System.Guid definitionId

The definition id.

Properties

WorkflowDefinitionId

Gets the workflow definition id.

Declaration
public Guid WorkflowDefinitionId { get; }
Property Value
Type Description
System.Guid

The workflow definition id.

WorkflowInstanceId

Gets the workflow instance id.

Declaration
public Guid WorkflowInstanceId { get; }
Property Value
Type Description
System.Guid

The workflow instance id.

Extension Methods