次の方法で共有


Installer.BeforeInstall イベント

インストーラ コレクション内の各インストーラの Install メソッドが実行される前に発生します。

Public Event BeforeInstall As InstallEventHandler
[C#]
public event InstallEventHandler BeforeInstall;
[C++]
public: __event InstallEventHandler* BeforeInstall;

[JScript] JScript では、このクラスで定義されているイベントを処理できます。ただし、独自に定義することはできません。

イベント データ

イベント ハンドラが、このイベントに関連するデータを含む、InstallEventArgs 型の引数を受け取りました。次の InstallEventArgs プロパティには、このイベントの固有の情報が記載されます。

プロパティ 説明
SavedState インストールの現在の状態を表す IDictionary を取得します。

使用例

[Visual Basic, C#, C++] BeforeInstall イベントの例を次に示します。これは OnBeforeInstall メソッドによって発生します。

 
' MyInstaller is derived from the class 'Installer'.
Sub New()
   MyBase.New()
   AddHandler BeforeInstall, AddressOf BeforeInstallEventHandler
End Sub 'New

Private Sub BeforeInstallEventHandler(sender As Object, e As InstallEventArgs)
   ' Add steps to perform any actions before the install process.
   Console.WriteLine("Code for BeforeInstallEventHandler")
End Sub 'BeforeInstallEventHandler

[C#] 
// MyInstaller is derived from the class 'Installer'.
MyInstaller() : base()
{
   BeforeInstall += new InstallEventHandler(BeforeInstallEventHandler);
}
private void BeforeInstallEventHandler(object sender, InstallEventArgs e)
{
   // Add steps to perform any actions before the install process.
   Console.WriteLine("Code for BeforeInstallEventHandler"); 
}

[C++] 
// MyInstaller is derived from the class 'Installer'.
MyInstaller() {
    BeforeInstall += new InstallEventHandler(this, &MyInstaller::BeforeInstallEventHandler);
}

  private:
    void BeforeInstallEventHandler(Object* sender, InstallEventArgs* e) {
    // Add steps to perform any actions before the install process.
    Console::WriteLine(S"Code for BeforeInstallEventHandler");
}

[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 名前空間 | AfterInstall | OnAfterInstall | OnBeforeInstall