C# Класс Adf.Base.Logging.EventLogProvider

Наследование: ILogProvider
Показать файл Открыть проект

Открытые методы

Метод Описание
EventLogProvider ( ) : System
Log ( Exception exception, IUser user ) : void

Logs the specified System.Exception and the user information.

Log ( LogLevel level, string message, IUser user ) : void

Logs the specified message with the specified loglevel and user information.

Log ( string message, IUser user ) : void

Logs the specified message and the user information.

Приватные методы

Метод Описание
IsAllowed ( LogLevel level ) : bool

Описание методов

EventLogProvider() публичный Метод

public EventLogProvider ( ) : System
Результат System

Log() публичный Метод

Logs the specified System.Exception and the user information.
public Log ( Exception exception, IUser user ) : void
exception System.Exception The to log.
user IUser The user information to log.
Результат void

Log() публичный Метод

Logs the specified message with the specified loglevel and user information.
public Log ( LogLevel level, string message, IUser user ) : void
level Adf.Core.Logging.LogLevel The loglevel to log.
message string The message to log.
user IUser The user information to log.
Результат void

Log() публичный Метод

Logs the specified message and the user information.
public Log ( string message, IUser user ) : void
message string The message to log.
user IUser The user information to log.
Результат void