EventLog.EnableRaisingEvents Property
Gets or sets a value indicating whether the EventLog receives EntryWritten event notifications.
Namespace: System.Diagnostics
Assembly: System (in System.dll)
| Exception | Condition |
|---|---|
| InvalidOperationException | The event log is on a remote computer. |
The EnableRaisingEvents property determines whether the EventLog raises events when entries are written to the log. When the property is true, components that receive the EntryWritten event will receive notification any time an entry is written to the log that is specified in the Log property. If EnableRaisingEvents is false, no events are raised.
Note |
|---|
You can receive event notifications only when entries are written on the local computer. You cannot receive notifications for entries written on remote computers. |
The following example handles an EntryWritten event.
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); } }
- EventLogPermission
for writing the event log information on the computer. Associated enumeration: EventLogPermissionAccess.Write
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note