EntryWrittenEventArgs.Entry Właściwość
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Pobiera wpis dziennika zdarzeń, który został zapisany w dzienniku.
public:
property System::Diagnostics::EventLogEntry ^ Entry { System::Diagnostics::EventLogEntry ^ get(); };
public System.Diagnostics.EventLogEntry Entry { get; }
member this.Entry : System.Diagnostics.EventLogEntry
Public ReadOnly Property Entry As EventLogEntry
Wartość właściwości
Element EventLogEntry reprezentujący wpis zapisany w dzienniku zdarzeń.
Przykłady
W poniższym przykładzie przyjęto założenie, że przykład został już zaimplementowany w pliku EntryWrittenEventArgs(EventLogEntry).
Tworzy obiekt niestandardowy EventLog i zapisuje w nim wpis. Następnie tworzy EntryWrittenEventArgs obiekt przy użyciu pierwszego wpisu w niestandardowym dzienniku zdarzeń. Ten obiekt służy do powiadamiania komunikatu.
void MyOnEntry( Object^ source, EntryWrittenEventArgs^ e )
{
EventLogEntry^ myEventLogEntry = e->Entry;
if ( myEventLogEntry )
{
Console::WriteLine( "Current message entry is: '{0}'", myEventLogEntry->Message );
}
else
{
Console::WriteLine( "The current entry is null" );
}
}
protected static void MyOnEntry(Object source, EntryWrittenEventArgs e)
{
EventLogEntry myEventLogEntry = e.Entry;
if (myEventLogEntry != null)
{
Console.WriteLine("Current message entry is: '"
+ myEventLogEntry.Message + "'");
}
else
{
Console.WriteLine("The current entry is null");
}
}
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