NAnt SDK Documentation - v0.92

Project.TaskFinished Event

[Visual Basic]
Public Event TaskFinished As BuildEventHandler
[C#]
public event BuildEventHandler TaskFinished;

Event Data

The event handler receives an argument of type BuildEventArgs containing data related to this event. The following BuildEventArgs properties provide information specific to this event.

Property Description
Exception Gets or sets the Exception associated with this event.
Message Gets or sets the message associated with this event.
MessageLevel Gets or sets the priority level associated with this event.
Project Gets the Project that fired this event.
Target Gets the Target that fired this event.
Task Gets the Task that fired this event.

See Also

Project Class | NAnt.Core Namespace