EventLog.EnableRaisingEvents Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit une valeur indiquant si EventLog reçoit les notifications d'un événement EntryWritten.
public:
property bool EnableRaisingEvents { bool get(); void set(bool value); };
[System.ComponentModel.Browsable(false)]
public bool EnableRaisingEvents { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.EnableRaisingEvents : bool with get, set
Public Property EnableRaisingEvents As Boolean
Valeur de propriété
true
si EventLog reçoit la notification quand une entrée est écrite dans le journal ; sinon, false
.
- Attributs
Exceptions
Le journal des événements se trouve sur un ordinateur distant.
Exemples
L’exemple suivant gère un EntryWritten événement.
#using <System.dll>
using namespace System;
using namespace System::Diagnostics;
using namespace System::Threading;
ref class MySample
{
public:
static void MyOnEntryWritten( Object^ /*source*/, EntryWrittenEventArgs^ e )
{
Console::WriteLine( "Written: {0}", e->Entry->Message );
}
};
int main()
{
EventLog^ myNewLog = gcnew EventLog;
myNewLog->Log = "MyCustomLog";
myNewLog->EntryWritten += gcnew EntryWrittenEventHandler( MySample::MyOnEntryWritten );
myNewLog->EnableRaisingEvents = true;
Console::WriteLine( "Press \'q\' to quit." );
// Wait for the EntryWrittenEvent or a quit command.
while ( Console::Read() != 'q' )
{
// Wait.
}
}
using System;
using System.Diagnostics;
using System.Threading;
class MySample{
public static void Main(){
EventLog myNewLog = new EventLog();
myNewLog.Log = "MyCustomLog";
myNewLog.EntryWritten += new EntryWrittenEventHandler(MyOnEntryWritten);
myNewLog.EnableRaisingEvents = true;
Console.WriteLine("Press \'q\' to quit.");
// Wait for the EntryWrittenEvent or a quit command.
while(Console.Read() != 'q'){
// Wait.
}
}
public static void MyOnEntryWritten(Object source, EntryWrittenEventArgs e){
Console.WriteLine("Written: " + e.Entry.Message);
}
}
Option Strict
Option Explicit
Imports System.Diagnostics
Imports System.Threading
Class MySample
Public Shared Sub Main()
Dim myNewLog As New EventLog()
myNewLog.Log = "MyCustomLog"
AddHandler myNewLog.EntryWritten, AddressOf MyOnEntryWritten
myNewLog.EnableRaisingEvents = True
Console.WriteLine("Press 'q' to quit.")
' Wait for the EntryWrittenEvent or a quit command.
While Char.ToLower(Convert.ToChar(Console.Read()))<>"q"
' Wait.
End While
End Sub
Public Shared Sub MyOnEntryWritten(source As Object, e As EntryWrittenEventArgs)
Console.WriteLine(("Written: " + e.Entry.Message))
End Sub
End Class
Remarques
La EnableRaisingEvents propriété détermine si déclenche des EventLog événements lorsque les entrées sont écrites dans le journal. Lorsque la propriété a la valeur true
, les composants qui reçoivent l’événement EntryWritten reçoivent une notification chaque fois qu’une entrée est écrite dans le journal spécifié dans la Log propriété . Si EnableRaisingEvents a la valeur , aucun événement n’est false
déclenché.
Notes
Vous pouvez recevoir des notifications d’événements uniquement lorsque des entrées sont écrites sur l’ordinateur local. Vous ne pouvez pas recevoir de notifications pour les entrées écrites sur des ordinateurs distants.