This Constructor creates a new Installer instance from a Stream and a string representing the physical path to the root of the site

Namespace: DotNetNuke.Services.Installer
Assembly: DotNetNuke (in DotNetNuke.dll)

Syntax

C#
public Installer(
	Stream inputStream,
	string physicalSitePath,
	bool loadManifest,
	bool deleteTemp
)
Visual Basic
Public Sub New ( 
	inputStream As Stream,
	physicalSitePath As String,
	loadManifest As Boolean,
	deleteTemp As Boolean
)

Parameters

inputStream
Type: System.IO..::..Stream
The Stream to use to create this InstallerInfo instance
physicalSitePath
Type: System..::..String
The physical path to the root of the site
loadManifest
Type: System..::..Boolean
Flag that determines whether the manifest will be loaded
deleteTemp
Type: System..::..Boolean
Whether delete the temp folder.

See Also