UtilitiesInstallExtension Method |
Installs an extension from given zip archive
Namespace:
Hummingbird.TestFramework
Assembly:
Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax public static bool InstallExtension(
string extensionArchive,
Guid extensionId,
out string InstallDir
)
Public Shared Function InstallExtension (
extensionArchive As String,
extensionId As Guid,
<OutAttribute> ByRef InstallDir As String
) As Boolean
public:
static bool InstallExtension(
String^ extensionArchive,
Guid extensionId,
[OutAttribute] String^% InstallDir
)
static member InstallExtension :
extensionArchive : string *
extensionId : Guid *
InstallDir : string byref -> bool
Parameters
- extensionArchive
- Type: SystemString
The full path of extension archive (*.zip) - extensionId
- Type: SystemGuid
The Id of the extension. - InstallDir
- Type: SystemString
The directory where the extension is or will be installed.
Return Value
Type:
BooleanTrue if the extension is installed, False if the extension can not be installed.
See Also