NAnt SDK Documentation - v0.92

BuildEventHandler Delegate

Represents the method that handles the build events.

[Visual Basic]
<Serializable>
Public Delegate Sub BuildEventHandler( _
   ByVal sender As Object, _
   ByVal e As BuildEventArgs _
)
[C#]
[Serializable]
public delegate void BuildEventHandler(
   object sender,
   BuildEventArgs e
);

Parameters

sender
The source of the event.
e
A BuildEventArgs that contains the event data.

Requirements

Namespace: NAnt.Core

Assembly: NAnt.Core (in NAnt.Core.dll)

See Also

NAnt.Core Namespace