Installer.BeforeUninstall イベント
Installers プロパティ内のインストーラのアンインストールが実行される前に発生します。
Public Event BeforeUninstall As InstallEventHandler
[C#]
public event InstallEventHandler BeforeUninstall;
[C++]
public: __event InstallEventHandler* BeforeUninstall;
[JScript] JScript では、このクラスで定義されているイベントを処理できます。ただし、独自に定義することはできません。
イベント データ
イベント ハンドラが、このイベントに関連するデータを含む、InstallEventArgs 型の引数を受け取りました。次の InstallEventArgs プロパティには、このイベントの固有の情報が記載されます。
プロパティ | 説明 |
---|---|
SavedState | インストールの現在の状態を表す IDictionary を取得します。 |
使用例
[Visual Basic, C#, C++] BeforeUninstall イベントの例を次に示します。これは OnBeforeUninstall メソッドによって発生します。
' MyInstaller is derived from the class 'Installer'.
Sub New()
MyBase.New()
AddHandler BeforeUninstall, AddressOf BeforeUninstallEventHandler
End Sub 'New
Private Sub BeforeUninstallEventHandler(sender As Object, e As InstallEventArgs)
' Add steps to perform any actions before the Uninstall process.
Console.WriteLine("Code for BeforeUninstallEventHandler")
End Sub 'BeforeUninstallEventHandler
[C#]
// MyInstaller is derived from the class 'Installer'.
MyInstaller() : base()
{
BeforeUninstall += new InstallEventHandler(BeforeUninstallEventHandler);
}
private void BeforeUninstallEventHandler(object sender, InstallEventArgs e)
{
// Add steps to perform any actions before the Uninstall process.
Console.WriteLine("Code for BeforeUninstallEventHandler");
}
[C++]
private:
// MyInstaller is derived from the class 'Installer'.
MyInstaller() {
BeforeUninstall += new InstallEventHandler(this, &MyInstaller::BeforeUninstallEventHandler);
}
void BeforeUninstallEventHandler(Object* sender, InstallEventArgs* e) {
// Add steps to perform any actions before the Uninstall process.
Console::WriteLine(S"Code for BeforeUninstallEventHandler");
}
[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 名前空間 | AfterUninstall | OnAfterUninstall | OnBeforeUninstall