InstallerTypeAttribute Constructors

Definition

Initializes a new instance of the InstallerTypeAttribute class.

Overloads

InstallerTypeAttribute(String)

Initializes a new instance of the InstallerTypeAttribute class with the name of the component's installer type.

InstallerTypeAttribute(Type)

Initializes a new instance of the InstallerTypeAttribute class, when given a Type that represents the installer for a component.

InstallerTypeAttribute(String)

Source:
InstallerTypeAttribute.cs
Source:
InstallerTypeAttribute.cs
Source:
InstallerTypeAttribute.cs

Initializes a new instance of the InstallerTypeAttribute class with the name of the component's installer type.

public:
 InstallerTypeAttribute(System::String ^ typeName);
public InstallerTypeAttribute (string typeName);
public InstallerTypeAttribute (string? typeName);
new System.ComponentModel.InstallerTypeAttribute : string -> System.ComponentModel.InstallerTypeAttribute
Public Sub New (typeName As String)

Parameters

typeName
String

The name of a Type that represents the installer for the component this attribute is bound to. This class must implement IDesigner.

Applies to

InstallerTypeAttribute(Type)

Source:
InstallerTypeAttribute.cs
Source:
InstallerTypeAttribute.cs
Source:
InstallerTypeAttribute.cs

Initializes a new instance of the InstallerTypeAttribute class, when given a Type that represents the installer for a component.

public:
 InstallerTypeAttribute(Type ^ installerType);
public InstallerTypeAttribute (Type installerType);
new System.ComponentModel.InstallerTypeAttribute : Type -> System.ComponentModel.InstallerTypeAttribute
Public Sub New (installerType As Type)

Parameters

installerType
Type

A Type that represents the installer for the component this attribute is bound to. This class must implement IDesigner.

Applies to