InstallerCollection::Item Property (Int32)
Gets or sets an installer at the specified index.
Assembly: System.Configuration.Install (in System.Configuration.Install.dll)
public: property Installer^ default[ int index ] { Installer^ get(int index); void set(int index, Installer^ value); }
Parameters
- index
-
Type:
System::Int32
The zero-based index of the installer to get or set.
Property Value
Type: System.Configuration.Install::Installer^An Installer that represents the installer at the specified index.
When the specified Installer is placed in the InstallerCollection, the Parent property of the Installer is set to the Installer that contains the collection.
The following example creates AssemblyInstaller instances for MyAssembly1.exe and MyAssembly2.exe. These instances are added to a TransactedInstaller. The names of all the assemblies that are to be installed are displayed to the console. The installation process installs both MyAssembly1.exe and MyAssembly2.exe.
TransactedInstaller^ myTransactedInstaller = gcnew TransactedInstaller; AssemblyInstaller^ myAssemblyInstaller; 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'. myTransactedInstaller->Installers->Add( myAssemblyInstaller ); // Create a instance of 'AssemblyInstaller' that installs 'MyAssembly2.exe'. myAssemblyInstaller = gcnew AssemblyInstaller( "MyAssembly2.exe",nullptr ); // Add the instance of 'AssemblyInstaller' to the 'TransactedInstaller'. myTransactedInstaller->Installers->Add( myAssemblyInstaller ); //Print the assemblies to be installed. InstallerCollection^ myInstallers = myTransactedInstaller->Installers; Console::WriteLine( "\nPrinting all assemblies to be installed" ); for ( int i = 0; i < myInstallers->Count; i++ ) { if ( dynamic_cast<AssemblyInstaller^>(myInstallers[ i ]) ) { Console::WriteLine( "{0} {1}", i + 1, safe_cast<AssemblyInstaller^>(myInstallers[ i ])->Path ); } }
Available since 1.1