Installer.OnAfterInstall(IDictionary) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
引發 AfterInstall 事件。
protected:
virtual void OnAfterInstall(System::Collections::IDictionary ^ savedState);
protected virtual void OnAfterInstall (System.Collections.IDictionary savedState);
abstract member OnAfterInstall : System.Collections.IDictionary -> unit
override this.OnAfterInstall : System.Collections.IDictionary -> unit
Protected Overridable Sub OnAfterInstall (savedState As IDictionary)
參數
- savedState
- IDictionary
IDictionary,包含 Installers 屬性中的所有安裝程式都完成其安裝之後的電腦狀態。
範例
下列範例示範 OnAfterInstall 方法。 這個方法會在衍生類別中覆寫。 提供空格以新增在方法中 OnAfterInstall 安裝之後要完成的步驟。
// Override the 'OnAfterInstall' method.
protected:
virtual void OnAfterInstall( IDictionary^ savedState ) override
{
Installer::OnAfterInstall( savedState );
// Add steps to be done after the installation is over.
Console::WriteLine( "OnAfterInstall method of MyInstaller called" );
}
// Override the 'OnAfterInstall' method.
protected override void OnAfterInstall(IDictionary savedState)
{
base.OnAfterInstall(savedState);
// Add steps to be done after the installation is over.
Console.WriteLine("OnAfterInstall method of MyInstaller called");
}
' Override the 'OnAfterInstall' method.
Protected Overrides Sub OnAfterInstall(savedState As IDictionary)
MyBase.OnAfterInstall(savedState)
' Add steps to be done after the installation is over.
Console.WriteLine("OnAfterInstall method of MyInstaller called")
End Sub
備註
這個方法會在這個實例InstallerCollection執行中所有安裝程式的方法之後Install呼叫。
引發事件會透過委派叫用此事件處理常式。 如需詳細資訊,請參閱 處理和引發事件。
方法 OnAfterInstall 可讓衍生類別處理事件,而不附加委派。 這是在衍生類別中處理事件的慣用技巧。
給繼承者的注意事項
當在衍生類別中覆寫 OnAfterInstall(IDictionary) 時,請確定呼叫基底類別的 OnAfterInstall(IDictionary) 方法,使已註冊的委派能接收到事件。