InstallerCollection::Insert Method (Int32, Installer^)
.NET Framework (current version)
Inserts the specified installer into the collection at the specified index.
Assembly: System.Configuration.Install (in System.Configuration.Install.dll)
Parameters
- index
-
Type:
System::Int32
The zero-based index at which to insert the installer.
- value
-
Type:
System.Configuration.Install::Installer^
The Installer to insert.
The following example is the same as the example in the AddRange method. For more information on this example, please see the Example section of the AddRange method.
TransactedInstaller^ myTransactedInstaller1 = gcnew TransactedInstaller; TransactedInstaller^ myTransactedInstaller2 = gcnew TransactedInstaller; AssemblyInstaller^ myAssemblyInstaller = gcnew AssemblyInstaller; InstallContext^ myInstallContext; // Create a instance of 'AssemblyInstaller' that installs 'MyAssembly1.exe'. myAssemblyInstaller = gcnew AssemblyInstaller( "MyAssembly1.exe",nullptr ); // Add the instance of 'AssemblyInstaller' to the 'TransactedInstaller'. myTransactedInstaller1->Installers->Insert( 0, myAssemblyInstaller ); // Create a instance of 'AssemblyInstaller' that installs 'MyAssembly2.exe'. myAssemblyInstaller = gcnew AssemblyInstaller( "MyAssembly2.exe",nullptr ); // Add the instance of 'AssemblyInstaller' to the 'TransactedInstaller'. myTransactedInstaller1->Installers->Insert( 1, myAssemblyInstaller ); // Copy the installers of 'myTransactedInstaller1' to 'myTransactedInstaller2'. myTransactedInstaller2->Installers->AddRange( myTransactedInstaller1->Installers );
.NET Framework
Available since 1.1
Available since 1.1
Show: