ServiceBase.EventLog Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets an event log you can use to write notification of service command calls, such as Start and Stop, to the Application event log.
public:
virtual property System::Diagnostics::EventLog ^ EventLog { System::Diagnostics::EventLog ^ get(); };
[System.ComponentModel.Browsable(false)]
public virtual System.Diagnostics.EventLog EventLog { get; }
[<System.ComponentModel.Browsable(false)>]
member this.EventLog : System.Diagnostics.EventLog
Public Overridable ReadOnly Property EventLog As EventLog
Property Value
An EventLog instance whose source is registered to the Application log.
- Attributes
Remarks
The constructor initializes the EventLog property to an instance with the EventLog.Source and EventLog.Log properties set. The source is the ServiceName of the service, and the log is the computer's Application log. These values are set automatically and cannot be changed for automatic logging of service commands.
When AutoLog is true
, Start, Stop, Pause, Continue, and custom commands are recorded automatically in the Application event log. You can use the EventLog property to write additional messages to that log as well. The component calls EventLog.WriteEntry using this EventLog member.
To report information to a custom event log rather than the Application log, set AutoLog to false
and write instructions within the command-handling methods OnContinue, OnPause, or OnStop to post to the appropriate log.