EventLogInformation Class

Definition

Allows you to access the run-time properties of active event logs and event log files. These properties include the number of events in the log, the size of the log, a value that determines whether the log is full, and the last time the log was written to or accessed.

public ref class EventLogInformation sealed
public sealed class EventLogInformation
type EventLogInformation = class
Public NotInheritable Class EventLogInformation
Inheritance
EventLogInformation

Examples

For example code using this class, see How to: Configure and Read Event Log Properties.

Properties

Attributes

Gets the file attributes of the log file associated with the log.

CreationTime

Gets the time that the log file associated with the event log was created.

FileSize

Gets the size of the file, in bytes, associated with the event log.

IsLogFull

Gets a Boolean value that determines whether the log file has reached its maximum size (the log is full).

LastAccessTime

Gets the last time the log file associated with the event log was accessed.

LastWriteTime

Gets the last time data was written to the log file associated with the event log.

OldestRecordNumber

Gets the number of the oldest event record in the event log.

RecordCount

Gets the number of event records in the event log.

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