Installer.Committing Evento
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Ocorre antes que os instaladores na propriedade Installers façam commit de suas instalações.
public:
event System::Configuration::Install::InstallEventHandler ^ Committing;
public event System.Configuration.Install.InstallEventHandler Committing;
member this.Committing : System.Configuration.Install.InstallEventHandler
Public Custom Event Committing As InstallEventHandler
Tipo de evento
Exemplos
O exemplo a seguir demonstra o Committing evento . Ele é gerado pelo OnCommitting método .
public:
MyInstallerClass()
: Installer()
{
// Attach the 'Committing' event.
this->Committing += gcnew InstallEventHandler( this, &MyInstallerClass::MyInstaller_Committing );
}
private:
// Event handler for 'Committing' event.
void MyInstaller_Committing( Object^ /*sender*/, InstallEventArgs^ /*e*/ )
{
Console::WriteLine( "Committing Event occurred." );
}
public MyInstallerClass() :base()
{
// Attach the 'Committing' event.
this.Committing += new InstallEventHandler(MyInstaller_Committing);
}
// Event handler for 'Committing' event.
private void MyInstaller_Committing(object sender, InstallEventArgs e)
{
Console.WriteLine("Committing Event occurred.");
}
Public Sub New()
MyBase.New()
' Attach the 'Committing' event.
AddHandler Me.Committing, AddressOf MyInstaller_Committing
End Sub
' Event handler for 'Committing' event.
Private Sub MyInstaller_Committing(ByVal sender As Object, _
ByVal e As InstallEventArgs)
Console.WriteLine("Committing Event occurred.")
End Sub
Aplica-se a
Confira também
Colaborar conosco no GitHub
A fonte deste conteúdo pode ser encontrada no GitHub, onde você também pode criar e revisar problemas e solicitações de pull. Para obter mais informações, confira o nosso guia para colaboradores.