EntryWrittenEventArgs Class
Provides data for the EntryWritten event.
Assembly: System (in System.dll)
The following example demonstrates the EntryWrittenEventArgs constructor. It creates a custom EventLog object and writes an entry into it. Then it creates an EntryWrittenEventArgs object using the first entry in the custom EventLog. This object is used to notify a message.
Imports System Imports System.Diagnostics Class MySample Public Shared Sub Main() Try Dim myNewLog As New EventLog() myNewLog.Log = "MyNewLog" myNewLog.Source = "MySource" ' Create the source if it does not exist already. If Not EventLog.SourceExists("MySource") Then EventLog.CreateEventSource("MySource", "MyNewLog") Console.WriteLine("CreatingEventSource") End If ' Write an entry to the EventLog. myNewLog.WriteEntry("The Latest entry in the Event Log") Dim myEntryEventArgs As EntryWrittenEventArgs = _ New EntryWrittenEventArgs() MyOnEntry(myNewLog, myEntryEventArgs) Catch e As Exception Console.WriteLine("Exception Raised" + e.Message) End Try End Sub 'Main Protected Shared Sub MyOnEntry(ByVal source As Object, _ ByVal e As EntryWrittenEventArgs) If e.Entry Is Nothing Then Console.WriteLine("A new entry is written in MyNewLog.") End If End Sub 'MyOnEntry End Class 'MySample
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.