次の方法で共有


Installer.Parent プロパティ

インストーラが属しているコレクションを格納しているインストーラを取得または設定します。

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

プロパティ値

インスタンスが属しているコレクションを格納している Installer 。インスタンスがコレクションに属していない場合は null 参照 (Visual Basic では Nothing) 。

解説

Installer のインスタンスがインストーラ コレクションの一部である場合、 Parent プロパティに、そのコレクションを格納する Installer インスタンスが設定されます。 Installers コレクションの使用例については、 AssemblyInstaller クラスのトピックを参照してください。

Installers プロパティは、インストーラのコレクションを格納します。 Installer クラスの InstallCommitRollbackUninstall の各メソッドは、コレクション内のインストーラに順次アクセスし、各インストーラに対応するメソッドを呼び出します。

使用例

[Visual Basic, C#, C++] Parent プロパティの例を次に示します。 Parent プロパティは、この Installer が属するコレクションを格納している Installer を取得します。

 
Dim myAssemblyInstaller1 As New AssemblyInstaller()
Dim myInstallerCollection1 As InstallerCollection = _
                                      myAssemblyInstaller1.Installers
' 'myAssemblyInstaller' is an installer of type 'AssemblyInstaller'.
myInstallerCollection1.Add(myAssemblyInstaller)

Dim myInstaller1 As Installer = myAssemblyInstaller.Parent
Console.WriteLine("Parent of myAssembly : {0}", myInstaller1.ToString())

[C#] 
AssemblyInstaller myAssemblyInstaller1 = new AssemblyInstaller();
InstallerCollection myInstallerCollection1 = myAssemblyInstaller1.Installers;
// 'myAssemblyInstaller' is an installer of type 'AssemblyInstaller'.
myInstallerCollection1.Add(myAssemblyInstaller);

Installer myInstaller1 = myAssemblyInstaller.Parent;
Console.WriteLine("Parent of myAssembly : {0}", myInstaller1.ToString());

[C++] 
AssemblyInstaller* myAssemblyInstaller1 = new AssemblyInstaller();
InstallerCollection* myInstallerCollection1 = myAssemblyInstaller1->Installers;
// 'myAssemblyInstaller' is an installer of type 'AssemblyInstaller'.
myInstallerCollection1->Add(myAssemblyInstaller);

Installer* myInstaller1 = myAssemblyInstaller->Parent;
Console::WriteLine(S"Parent of myAssembly : {0}", myInstaller1);

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ

.NET Framework セキュリティ:

参照

Installer クラス | Installer メンバ | System.Configuration.Install 名前空間 | Commit | Install | InstallerCollection | Installers | Rollback | Uninstall