Installer.Committed イベント
アセンブリ: System.Configuration.Install (system.configuration.install.dll 内)

public: event InstallEventHandler^ Committed { void add (InstallEventHandler^ value); void remove (InstallEventHandler^ value); }

Committed イベントの例を次に示します。これは OnCommitted メソッドによって発生します。
Public Sub New() MyBase.New() ' Attach the 'Committed' event. AddHandler Me.Committed, AddressOf MyInstaller_Committed End Sub 'New ' Event handler for 'Committed' event. Private Sub MyInstaller_Committed(ByVal sender As Object, ByVal e As InstallEventArgs) Console.WriteLine("") Console.WriteLine("Committed Event occured.") Console.WriteLine("") End Sub 'MyInstaller_Committed
public MyInstallerClass() :base() { // Attach the 'Committed' event. this.Committed += new InstallEventHandler(MyInstaller_Committed); } // Event handler for 'Committed' event. private void MyInstaller_Committed(object sender, InstallEventArgs e) { Console.WriteLine("Committed Event occured."); }
public: MyInstallerClass() { // Attach the 'Committed' event. this->Committed += gcnew InstallEventHandler( this, &MyInstallerClass::MyInstaller_Committed ); } private: // Event handler for 'Committed' event. void MyInstaller_Committed( Object^ sender, InstallEventArgs^ e ) { Console::WriteLine( "Committed Event occured." ); }
public MyInstallerClass() { // Attach the 'Committed' event. this.add_Committed(new InstallEventHandler(MyInstaller_Committed)); } //MyInstallerClass // Event handler for 'Committed' event. private void MyInstaller_Committed(Object sender, InstallEventArgs e) { Console.WriteLine("Committed Event occured."); } //MyInstaller_Committed


Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からInstaller.Committed イベントを検索する場合は、下記のリンクをクリックしてください。

- Installer.Committed イベントのページへのリンク