Adds a plugin path.

Namespace:  Gallio.Runtime.Extensibility
Assembly:  Gallio (in Gallio.dll) Version: 3.3.0.0 (3.3.610.0)

Syntax

C#
public void AddPluginPath(
	string pluginPath
)
Visual Basic (Declaration)
Public Sub AddPluginPath ( _
	pluginPath As String _
)

Parameters

pluginPath
Type: System..::.String
The plugin path to add.

Implements

IPluginLoader..::.AddPluginPath(String)

Remarks

If the plugin path refers to a specific plugin file, it will be loaded when the catalog is populated. Otherwise if the plugin path refers to a directory, then the directory will be scanned for *.plugin files when the catalog is populated.

Exceptions

ExceptionCondition
System..::.ArgumentNullExceptionThrown if pluginPath is null.

See Also