Class AssemblyInstaller
The AssemblyInstaller installs Assembly Components to a DotNetNuke site.
Inherited Members
Namespace: DotNetNuke.Services.Installer.Installers
Assembly: DotNetNuke.dll
Syntax
public class AssemblyInstaller : FileInstaller
Properties
| Improve this Doc View SourceAllowableFiles
Gets a list of allowable file extensions (in addition to the Host's List).
Declaration
public override string AllowableFiles { get; }
Property Value
Type | Description |
---|---|
System.String |
Overrides
| Improve this Doc View SourceCollectionNodeName
Gets the name of the Collection Node (assemblies
).
Declaration
protected override string CollectionNodeName { get; }
Property Value
Type | Description |
---|---|
System.String |
Overrides
| Improve this Doc View SourceDefaultPath
Gets the default Path for the file - if not present in the manifest.
Declaration
protected override string DefaultPath { get; }
Property Value
Type | Description |
---|---|
System.String |
Overrides
| Improve this Doc View SourceItemNodeName
Gets the name of the Item Node (assembly
).
Declaration
protected override string ItemNodeName { get; }
Property Value
Type | Description |
---|---|
System.String |
Overrides
| Improve this Doc View SourcePhysicalBasePath
Gets the PhysicalBasePath for the assemblies.
Declaration
protected override string PhysicalBasePath { get; }
Property Value
Type | Description |
---|---|
System.String |
Overrides
Methods
| Improve this Doc View SourceDeleteFile(InstallFile)
The DeleteFile method deletes a single file.
Declaration
protected override void DeleteFile(InstallFile file)
Parameters
Type | Name | Description |
---|---|---|
InstallFile | file |
Overrides
| Improve this Doc View SourceInstallFile(InstallFile)
The InstallFile method installs a single file.
Declaration
protected override bool InstallFile(InstallFile file)
Parameters
Type | Name | Description |
---|---|---|
InstallFile | file |
Returns
Type | Description |
---|---|
System.Boolean | true if the installation was successful, otherwise false. |
Overrides
| Improve this Doc View SourceIsCorrectType(InstallFileType)
Gets a flag that determines what type of file this installer supports.
Declaration
protected override bool IsCorrectType(InstallFileType type)
Parameters
Type | Name | Description |
---|---|---|
InstallFileType | type | The type of file being processed. |
Returns
Type | Description |
---|---|
System.Boolean | true if this is the correct |