GlobalLoadExtensionFrom Method |
Loads the extension from a specific directory
Namespace:
Hummingbird.TestFramework
Assembly:
Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax public static void LoadExtensionFrom(
DirectoryInfo pluginDir,
bool generateMetadata
)
Public Shared Sub LoadExtensionFrom (
pluginDir As DirectoryInfo,
generateMetadata As Boolean
)
public:
static void LoadExtensionFrom(
DirectoryInfo^ pluginDir,
bool generateMetadata
)
static member LoadExtensionFrom :
pluginDir : DirectoryInfo *
generateMetadata : bool -> unit
Parameters
- pluginDir
- Type: System.IODirectoryInfo
The directory where the extension is installed. In this folder, ExtensionDefinition.xml file must exists - generateMetadata
- Type: SystemBoolean
if set to true to tell the test framework to regenerate service metadata. When load an extension after initializing please set the value to True
See Also