NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

InstallerCollection.All

Gets or sets an array of all the Installer objects in this InstallerCollection.

[Visual Basic]
Public Property All As Installer ()
[C#]
public Installer[] All {get; set;}
[C++]
public: __property Installer* get_All();
public: __property void set_All(Installer*[]);
[JScript]
public function get All() : Installer[];
public function set All(Installer[]);

Property Value

An array containing all of the Installer objects in this InstallerCollection.

Remarks

The collection is cleared before the array of Installer objects is set into the collection. When the installer array is set into the collection, the Parent property of each Installer in the array is set to the Installer that contains the collection.

Note   Call Add or AddRange respectively to add an installer or a range of installers to the collection.

See Also

InstallerCollection Class | InstallerCollection Members | System.Configuration.Install Namespace | Add | AddRange | Remove | RemoveRange