Class EventLogHelper
Class for event helper methods
public class EventLogHelper : AbstractHelper<EventLogHelper>
- Inheritance
-
objectEventLogHelper
- Inherited Members
- Extension Methods
Properties
LogEventsToFile
Indicates if events are logged to the file.
public static bool LogEventsToFile { get; set; }
Property Value
- bool
LogEventsToFileInternal
Indicates if events are logged to the file.
protected virtual bool LogEventsToFileInternal { get; set; }
Property Value
- bool
LogFile
Physical path to the log file.
public static string LogFile { get; }
Property Value
- string
LogFileInternal
Physical path to the log file.
protected virtual string LogFileInternal { get; }
Property Value
- string
LogFolder
Physical path to folder where log file is saved.
public static string LogFolder { get; set; }
Property Value
- string
LogFolderInternal
Physical path to folder where log file is saved.
protected virtual string LogFolderInternal { get; set; }
Property Value
- string
Methods
ClearEventLog(int, string, string)
Clears entire event log and writes new event record with information about this action and the user who performed it.
public static void ClearEventLog(int userId, string userName, string ipAddress)
Parameters
userId
intUser ID for logging purposes
userName
stringUser name for logging purposes
ipAddress
stringIP address for logging purposes
ClearEventLogInternal(int, string, string)
Clears entire event log and writes new event record with information about this action and the user who performed it.
protected virtual void ClearEventLogInternal(int userId, string userName, string ipAddress)
Parameters
userId
intUser ID for logging purposes
userName
stringUser name for logging purposes
ipAddress
stringIP address for logging purposes
GetChangedFields(BaseInfo)
Gets the list of changed fields in the given object.
[Obsolete("Method was not intended for public use and will be removed in the next version.")]
[ObsoleteSince(28, 2)]
public static string GetChangedFields(BaseInfo bi)
Parameters
bi
BaseInfoBaseInfo object
Returns
- string
GetChangedFieldsInternal(BaseInfo)
Gets the list of changed fields in the given object.
[Obsolete("Method was not intended for public use and will be removed in the next version.")]
[ObsoleteSince(28, 2)]
protected virtual string GetChangedFieldsInternal(BaseInfo bi)
Parameters
bi
BaseInfoBaseInfo object
Returns
- string
GetEventText(EventLogInfo)
Gets log event text from DataRow
[Obsolete("Method was not intended for public use and will be removed in the next version.")]
[ObsoleteSince(28, 2)]
public static string GetEventText(EventLogInfo eventObj)
Parameters
eventObj
EventLogInfoObject containing log event data
Returns
- string
Text of log event
GetEventTextInternal(EventLogData)
Gets log event text from event data object
[Obsolete("Method was not intended for public use and will be removed in the next version.")]
[ObsoleteSince(28, 2)]
protected virtual string GetEventTextInternal(EventLogData eventObj)
Parameters
eventObj
EventLogDataObject containing log event data
Returns
- string
Text of log event
GetEventTextInternal(EventLogInfo)
Gets log event text from DataRow
[Obsolete("Method was not intended for public use and will be removed in the next version.")]
[ObsoleteSince(28, 2)]
protected virtual string GetEventTextInternal(EventLogInfo eventObj)
Parameters
eventObj
EventLogInfoObject containing log event data
Returns
- string
Text of log event
GetEventTypeText(string)
Returns user-friendly string for the given event type.
[Obsolete("Method was not intended for public use and will be removed in the next version.")]
[ObsoleteSince(28, 2)]
public static string GetEventTypeText(string eventType)
Parameters
eventType
stringEvent type string
Returns
- string
GetEventTypeTextInternal(string)
Returns user-friendly string for the given event type.
[Obsolete("Method was not intended for public use and will be removed in the next version.")]
[ObsoleteSince(28, 2)]
protected virtual string GetEventTypeTextInternal(string eventType)
Parameters
eventType
stringEvent type string
Returns
- string
GetFields(BaseInfo)
Gets the list of fields in the given object.
[Obsolete("Method was not intended for public use and will be removed in the next version.")]
[ObsoleteSince(28, 2)]
public static string GetFields(BaseInfo bi)
Parameters
bi
BaseInfoBaseInfo object
Returns
- string
GetFieldsInternal(BaseInfo)
Gets the list of fields in the given object.
[Obsolete("Method was not intended for public use and will be removed in the next version.")]
[ObsoleteSince(28, 2)]
protected virtual string GetFieldsInternal(BaseInfo bi)
Parameters
bi
BaseInfoBaseInfo object
Returns
- string
LogDelete(GeneralizedInfo)
Logs deletion of an object.
public static void LogDelete(GeneralizedInfo infoObj)
Parameters
infoObj
GeneralizedInfoMain info object
LogDeleteInternal(GeneralizedInfo)
Logs deletion of an object.
protected virtual void LogDeleteInternal(GeneralizedInfo infoObj)
Parameters
infoObj
GeneralizedInfoMain info object
LogEventToFile(EventLogInfo)
Logs the log object to file.
public static void LogEventToFile(EventLogInfo eventLogInfo)
Parameters
eventLogInfo
EventLogInfoEvent info object
LogEventToFile(string, string, string, string, string, int, string, string, string, string, string, DateTime)
Logs the query to file.
[Obsolete("Method was not intended for public use and will be removed in the next version.")]
[ObsoleteSince(28, 2)]
public static void LogEventToFile(string eventType, string source, string eventCode, string eventDescription, string eventUrl, int userId, string userName, string ipAddress, string machineName, string eventUrlReferrer, string eventUserAgent, DateTime eventTime)
Parameters
eventType
stringType of the event. I = information, E = error, W = warning
source
stringSource of the event (Content, Administration, etc.)
eventCode
stringEvent code (Security, Update, Delete, etc.)
eventDescription
stringDetailed description of the event
eventUrl
stringEvent URL address
userId
intID of the user, who caused logged event
userName
stringName of the user, who caused logged event
ipAddress
stringIP Address of the user, who caused logged event
machineName
stringName of machine
eventUrlReferrer
stringURL referrer
eventUserAgent
stringUser agent
eventTime
DateTimeDate and time when the event occurs
LogEventToFileInternal(EventLogInfo)
Logs the log object to file.
protected virtual void LogEventToFileInternal(EventLogInfo eventLogInfo)
Parameters
eventLogInfo
EventLogInfoEvent info object
LogEventToFileInternal(string, string, string, string, string, int, string, string, string, string, string, DateTime)
Logs the query to file.
[Obsolete("Method was not intended for public use and will be removed in the next version.")]
[ObsoleteSince(28, 2)]
protected virtual void LogEventToFileInternal(string eventType, string source, string eventCode, string eventDescription, string eventUrl, int userId, string userName, string ipAddress, string machineName, string eventUrlReferrer, string eventUserAgent, DateTime eventTime)
Parameters
eventType
stringType of the event. I = information, E = error, W = warning
source
stringSource of the event (Content, Administration, etc.)
eventCode
stringEvent code (Security, Update, Delete, etc.)
eventDescription
stringDetailed description of the event
eventUrl
stringEvent URL address
userId
intID of the user, who caused logged event
userName
stringName of the user, who caused logged event
ipAddress
stringIP Address of the user, who caused logged event
machineName
stringName of machine
eventUrlReferrer
stringURL referrer
eventUserAgent
stringUser agent
eventTime
DateTimeDate and time when the event occurs
LogInsert(GeneralizedInfo)
Logs insertion of an object.
public static void LogInsert(GeneralizedInfo infoObj)
Parameters
infoObj
GeneralizedInfoMain info object
LogInsertInternal(GeneralizedInfo)
Logs insertion of an object.
protected virtual void LogInsertInternal(GeneralizedInfo infoObj)
Parameters
infoObj
GeneralizedInfoMain info object
LogUpdate(GeneralizedInfo)
Logs update of an object.
public static void LogUpdate(GeneralizedInfo infoObj)
Parameters
infoObj
GeneralizedInfoMain info object
LogUpdateInternal(GeneralizedInfo)
Logs update of an object.
protected virtual void LogUpdateInternal(GeneralizedInfo infoObj)
Parameters
infoObj
GeneralizedInfoMain info object