This documentation is archived and is not being maintained.
InstallationFlags Enumeration
.NET Framework 1.1
Flags used with the RegistrationHelper class.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
[Visual Basic] <Flags> <Serializable> Public Enum InstallationFlags [C#] [Flags] [Serializable] public enum InstallationFlags [C++] [Flags] [Serializable] __value public enum InstallationFlags [JScript] public Flags Serializable enum InstallationFlags
Members
| Member name | Description | Value |
|---|---|---|
| Configure | Should not be used. | 1024 |
| ConfigureComponentsOnly | Configure components only, do not configure methods or interfaces. | 16 |
| CreateTargetApplication | Create the target application. Error if it already exists. | 2 |
| Default | Do the default installation, which does the configure, install, and register steps, and assumes that the application already exists. | 0 |
| ExpectExistingTypeLib | Do not export the type library; one can be found either by the generated or supplied type library name. | 1 |
| FindOrCreateTargetApplication | Create the application if it does not exist; otherwise use the existing application. | 4 |
| Install | Should not be used. | 512 |
| ReconfigureExistingApplication | If using an existing application, ensure that the properties on this application match those in the assembly. | 8 |
| Register | Should not be used. | 256 |
| ReportWarningsToConsole | When alert text is encountered, write it to the Console. | 32 |
Requirements
Namespace: System.EnterpriseServices
Platforms: Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
Assembly: System.Enterpriseservices (in System.Enterpriseservices.dll)
See Also
Show: