Click or drag to resize
IEventLogService Interface
Defines contract for logging events.

Namespace: CMS.Core
Assembly: CMS.Core (in CMS.Core.dll) Version: 13.0.131
Syntax
C#
public interface IEventLogService

The IEventLogService type exposes the following members.

Methods
  NameDescription
Public methodLogEvent

Logs eventLogData to the appropriate log output. The implementation should ensure that contextual information is filled.

The following properties should be filled with contextual data:

Top
Extension Methods
  NameDescription
Public Extension MethodLogError
Writes a new error to the event log.
(Defined by EventLogServiceExtensions.)
Public Extension MethodLogEvent
Writes a new record to the event log.
(Defined by EventLogServiceExtensions.)
Public Extension MethodLogException
Writes a new error to the event log.
(Defined by EventLogServiceExtensions.)
Public Extension MethodLogInformation
Writes a new information to the event log.
(Defined by EventLogServiceExtensions.)
Public Extension MethodLogWarning(String, String, String, Int32, LoggingPolicy)Overloaded.
Writes a new warning to the event log.
(Defined by EventLogServiceExtensions.)
Public Extension MethodLogWarning(String, String, Exception, Int32, String, LoggingPolicy)Overloaded.
Writes a new warning to the event log.
(Defined by EventLogServiceExtensions.)
Top
See Also