Activity::Canceling Event

 

Occurs when the activity execution is canceled.

Namespace:   System.Workflow.ComponentModel
Assembly:  System.Workflow.ComponentModel (in System.Workflow.ComponentModel.dll)

public:
[BrowsableAttribute(false)]
event EventHandler<ActivityExecutionStatusChangedEventArgs^>^ Canceling {
	void add(EventHandler<ActivityExecutionStatusChangedEventArgs^>^ value);
	void remove(EventHandler<ActivityExecutionStatusChangedEventArgs^>^ value);
}

Raising an event invokes the event handler through a delegate. For more information, seeNIB: Raising an Event.

The Cancel method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class. For more information about handling events, see NIB: Consuming Events.

Notes to Inheritors:

When overriding Canceling in a derived class, make sure to call the base class Cancel method so that registered delegates receive the event.

.NET Framework
Available since 3.0
Return to top
Show: