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 instance As New DeploymentTechnology(id, installerTechId, hostingTechId, allowedHostingTechIds) |
Syntax
Visual Basic |
---|
Protected Sub New ( _ id As String, _ installerTechId As String, _ hostingTechId As String, _ allowedHostingTechIds As IEnumerable(Of String) _ ) |
C# |
---|
protected DeploymentTechnology ( string id, string installerTechId, string hostingTechId, IEnumerable<string> allowedHostingTechIds ) |
C++ |
---|
protected: DeploymentTechnology ( String^ id, String^ installerTechId, String^ hostingTechId, IEnumerable<String^>^ allowedHostingTechIds ) |
J# |
---|
protected DeploymentTechnology ( String id, String installerTechId, String hostingTechId, IEnumerable<String> allowedHostingTechIds ) |
JScript |
---|
protected function DeploymentTechnology ( id : String, installerTechId : String, hostingTechId : String, allowedHostingTechIds : IEnumerable<String> ) |
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.
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.