NDoc 1.3.1 SDK

Project.AppendProbePath Method 

Appends the specified directory to the documenter probe path.

[Visual Basic]
Public Sub AppendProbePath( _ 
   ByVal path As String _ 
)
[C#]
public void AppendProbePath(
   string path
);
[C++]
public: void AppendProbePath(
   String* path
);
[JScript]
public function AppendProbePath(
   String path
);

Parameters

path
The directory to add to the probe path.

Remarks

The probe path is the list of directories that will be scanned for assemblies that have classes implementing IDocumenter.

Exceptions

Exception TypeCondition
ArgumentNullExceptionpath is a null reference (Nothing in Visual Basic).
ArgumentExceptionpath is a zero-length String.

See Also

Project Class | NDoc.Core Namespace