EventLogSession Class

Definition

Used to access the Event Log service on the local computer or a remote computer so you can manage and gather information about the event logs and event providers on the computer.

public ref class EventLogSession : IDisposable
public class EventLogSession : IDisposable
type EventLogSession = class
    interface IDisposable
Public Class EventLogSession
Implements IDisposable
Inheritance
EventLogSession
Implements

Examples

For example code using this class, see How To: Query for Events, How to: Retrieve Information About an Event Publisher or How to: Configure and Read Event Log Properties.

Constructors

EventLogSession()

Initializes a new EventLogSession object, establishes a connection with the local Event Log service.

EventLogSession(String)

Initializes a new EventLogSession object, and establishes a connection with the Event Log service on the specified computer. The credentials (user name and password) of the user who calls the method is used for the credentials to access the remote computer.

EventLogSession(String, String, String, SecureString, SessionAuthentication)

Initializes a new EventLogSession object, and establishes a connection with the Event Log service on the specified computer. The specified credentials (user name and password) are used for the credentials to access the remote computer.

Properties

GlobalSession

Gets a static predefined session object that is connected to the Event Log service on the local computer.

Methods

CancelCurrentOperations()

Cancels any operations (such as reading an event log or subscribing to an event log) that are currently active for the Event Log service that this session object is connected to.

ClearLog(String)

Clears events from the specified event log.

ClearLog(String, String)

Clears events from the specified event log, and saves the cleared events to the specified file.

Dispose()

Releases all the resources used by this object.

Dispose(Boolean)

Releases the unmanaged resources used by this object, and optionally releases the managed resources.

Equals(Object)

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

(Inherited from Object)
ExportLog(String, PathType, String, String)

Exports events into an external log file. The events are stored without the event messages.

ExportLog(String, PathType, String, String, Boolean)

Exports events into an external log file. A flag can be set to indicate that the method will continue exporting events even if the specified query fails for some logs. The events are stored without the event messages.

ExportLogAndMessages(String, PathType, String, String)

Exports events and their messages into an external log file.

ExportLogAndMessages(String, PathType, String, String, Boolean, CultureInfo)

Exports events and their messages into an external log file. A flag can be set to indicate that the method will continue exporting events even if the specified query fails for some logs. The event messages are exported in the specified language.

GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetLogInformation(String, PathType)

Gets an object that contains runtime information for the specified event log.

GetLogNames()

Gets an enumerable collection of all the event log names that are registered with the Event Log service.

GetProviderNames()

Gets an enumerable collection of all the event provider names that are registered with the Event Log service. An event provider is an application that publishes events to an event log.

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