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!

Installer.Parent

Gets or sets the Installer whose InstallerCollection contains this Installer instance.

[Visual Basic]
Overridable Public Property Parent As Installer
[C#]
public Installer Parent {virtual get; virtual set;}
[C++]
public: __property virtual Installer* get_Parent();
public: __property virtual void set_Parent(Installer*);
[JScript]
public function get Parent() : Installer;
public function set Parent(Installer);

Property Value

An Installer that represents the installer whose InstallerCollection contains this instance. This property will be a null reference (in Visual Basic Nothing) if the installer is not part of an installer collection.

Remarks

This Installer instance is part of the Installers collection in the Parent Installer. The parent installer calls the Install, Commit, Rollback, and Uninstall methods of the installers contained within its InstallerCollection.

See Also

Installer Class | Installer Members | System.Configuration.Install Namespace | Installers | InstallerCollection | Install | Commit | Rollback | Uninstall