Initializes a new instance of the deployment technology class that has the specified installer technology, default hosting technology, a list of allowed hosting technologies, and the specified resource manager. Namespace: Microsoft.ConfigurationManagement.ApplicationManagement
Assembly: Microsoft.ConfigurationManagement.ApplicationManagement (in Microsoft.ConfigurationManagement.ApplicationManagement.dll)

Usage

Visual Basic
Dim id As String
Dim installerTechId As String
Dim hostingTechId As String
Dim allowedHostingTechIds As IEnumerable(Of String)
Dim resMgr As ResourceManager

Dim instance As New DeploymentTechnology(id, installerTechId, hostingTechId, allowedHostingTechIds, resMgr)

Syntax

Visual Basic
Protected Sub New ( _
		id As String, _
		installerTechId As String, _
		hostingTechId As String, _
		allowedHostingTechIds As IEnumerable(Of String), _
		resMgr As ResourceManager _
)
C#
protected DeploymentTechnology (
		string id,
		string installerTechId,
		string hostingTechId,
		IEnumerable<string> allowedHostingTechIds,
		ResourceManager resMgr
)
C++
protected:
DeploymentTechnology (
		String^ id, 
		String^ installerTechId, 
		String^ hostingTechId, 
		IEnumerable<String^>^ allowedHostingTechIds, 
		ResourceManager^ resMgr
)
J#
protected DeploymentTechnology (
		String id, 
		String installerTechId, 
		String hostingTechId, 
		IEnumerable<String> allowedHostingTechIds, 
		ResourceManager resMgr
)
JScript
protected function DeploymentTechnology (
		id : String, 
		installerTechId : String, 
		hostingTechId : String, 
		allowedHostingTechIds : IEnumerable<String>, 
		resMgr : ResourceManager
)

Parameters

id

The identifier of the deployment technology.

installerTechId

The identifier of the installer technology that will be used by the deployment technology.

hostingTechId

The identifier of the hosting technology id that will be used as the default hosting technology for the deployment technology.

allowedHostingTechIds

The list of identifiers for the hosting technologies that are allowed by the deployment technology.

resMgr

The resource manager.

Remarks

The installer technology identified by the installerTechId parameter must have been registered by using the InstallerTechnologyRegistrar property.

The hosting technology identified by the hostingTechId parameter must have been registered by using the HostingTechnologyRegistrar property.


Platforms

Development Platforms

Windows Vista, Windows Server 2003, and

Target Platforms

See Also