本文整理汇总了VB.NET中System.Diagnostics.EntryWrittenEventArgs.EntryWrittenEventArgs构造函数的典型用法代码示例。如果您正苦于以下问题:VB.NET EntryWrittenEventArgs构造函数的具体用法?VB.NET EntryWrittenEventArgs怎么用?VB.NET EntryWrittenEventArgs使用的例子?那么恭喜您, 这里精选的构造函数代码示例或许可以为您提供帮助。您也可以进一步了解该构造函数所在类System.Diagnostics.EntryWrittenEventArgs
的用法示例。
在下文中一共展示了EntryWrittenEventArgs构造函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的VB.NET代码示例。
示例1: MySample
' 导入命名空间
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
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
End Class
示例2: MySample
' 导入命名空间
Imports System.Diagnostics
Class MySample
Public Shared Sub Main()
Try
Dim myNewLog As New EventLog()
' Create the source if it does not exist already.
If Not EventLog.SourceExists("MySource") Then
EventLog.CreateEventSource("MySource", "MyNewLog")
Console.WriteLine("CreatingEventSource")
End If
myNewLog.Log = "MyNewLog"
myNewLog.Source = "MySource"
' Write an entry to the EventLog.
myNewLog.WriteEntry("The Latest entry in the Event Log")
Dim myEntries As Integer = myNewLog.Entries.Count
Dim entry As EventLogEntry = myNewLog.Entries(myEntries - 1)
Dim myEntryEventArgs As New EntryWrittenEventArgs(entry)
MyOnEntry(myNewLog, myEntryEventArgs)
Catch e As Exception
Console.WriteLine("Exception Raised" + e.Message)
End Try
End Sub
Protected Shared Sub MyOnEntry(source As Object, e As EntryWrittenEventArgs)
Dim myEventLogEntry As EventLogEntry = e.Entry
If Not (myEventLogEntry Is Nothing) Then
Console.WriteLine("Current message entry is: '" + _
myEventLogEntry.Message + "'")
Else
Console.WriteLine("The current entry is null")
End If
End Sub
End Class