NDoc 1.3.1 SDK

DocBuildingEventHandler Delegate

Used by events raised by IDocumenter to notify doc building progress.

[Visual Basic]
Public Delegate Function Sub  DocBuildingEventHandler( _ 
   ByVal sender As Object, _ 
   ByVal e As ProgressArgs _ 
)
[C#]
public delegate void DocBuildingEventHandler(
   object sender,
   ProgressArgs e
)
[C++]
public __gc __delegate void DocBuildingEventHandler(
   Object* sender,
   ProgressArgs* e
)

[JScript] In JScript, you can use the delegates defined by a type, but you cannot define your own.

Parameters

sender
The source of the event.
e
An ProgressArgs that contains the event data.

Requirements

Namespace: NDoc.Core

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

See Also

NDoc.Core Namespace