EventRecordWrittenEventArgs Class

Definition

When the EventRecordWritten event is raised, an instance of this object is passed to the delegate method that handles the event. This object contains the event that was published to the event log or the exception that occurred when the event subscription failed.

public ref class EventRecordWrittenEventArgs sealed : EventArgs
public sealed class EventRecordWrittenEventArgs : EventArgs
type EventRecordWrittenEventArgs = class
    inherit EventArgs
Public NotInheritable Class EventRecordWrittenEventArgs
Inherits EventArgs
Inheritance
EventRecordWrittenEventArgs

Examples

For example code using this class, see How to: Subscribe to Events in an Event Log.

Properties

EventException

Gets the exception that occurred when the event subscription failed. The exception has a description of why the subscription failed.

EventRecord

Gets the event record that is published to the event log. This event matches the criteria from the query specified in the event subscription.

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to

See also