Click or drag to resize
Galactic API

SqlEventLog Class

SqlEventLog is a class that logs activity to a SQL Database table.
Inheritance Hierarchy

Namespace:  Galactic.EventLog.Sql
Assembly:  Galactic.EventLog.Sql (in Galactic.EventLog.Sql.dll) Version: 1.3.0.499 (1.3.0.499)
Syntax
public class SqlEventLog : EventLog

The SqlEventLog type exposes the following members.

Constructors
  NameDescription
Public methodSqlEventLog
Creates a new SQL event log.
Top
Methods
  NameDescription
Protected methodAddCategory
Adds an event category to the log. Categories help to classify the type of event that occurred.
Protected methodAddEvent
Adds an event to the log.
Protected methodAddSeverityLevel
Adds an event severity level to the log. Severity levels help to identify the importance of an event.
Protected methodAddSource
Adds an event source to the log. Event sources identify where the event originated.
Protected methodDeleteCategory
Deletes an event category from the log.
Protected methodDeleteEvent
Deletes an event from the log.
Protected methodDeleteSeverityLevel
Deletes an event severity level from the log.
Protected methodDeleteSource
Deletes an event source from the log. Note: Deleting an event source, deletes all events originating from this source in the log.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodFind
Finds events that match the filters provided. See each parameter for information on how to filter the search.
(Overrides EventLogFind(String, NullableEventSeverityLevels, String, NullableDateTime, NullableDateTime).)
Protected methodGetCategories
Gets event categories from the log that match the specified criteria. Note: See parameter descriptions for information on filtering your results.
Protected methodGetEvents
Gets events from the log that match specified criteria. Note: See parameter descriptions for information on filtering your results.
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Protected methodGetSeverityLevels
Gets event severity levels from the log that match the specified criteria. Note: See parameter descriptions for information on filtering your results.
Protected methodGetSources
Gets event sources from the log that match the specified criteria. Note: See parameter descriptions for information on filtering your results.
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodLog
Logs the event to the event log.
(Overrides EventLogLog(Event).)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Protected methodUpdateCategory
Updates the attributes of an existing event category.
Protected methodUpdateEvent
Updates the attributes of an existing event.
Protected methodUpdateSeverityLevel
Updates the attributes of an existing event severity level.
Protected methodUpdateSource
Updates the attributes of an existing event source.
Top
See Also