NAnt SDK Documentation - v0.85-nightly-2005-11-09

BuildEventHandler Delegate

[This is preliminary documentation and subject to change.]

Represents the method that handles the build events.

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

Parameters

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

Remarks

Missing <remarks> documentation for T:NAnt.Core.BuildEventHandler

Requirements

Namespace: NAnt.Core

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

See Also

NAnt.Core Namespace