Interface IAuditManager
Declarations related to audit information.
Namespace: MESL.SqlRace.Domain
Assembly: MESL.SqlRace.Domain.dll
Syntax
public interface IAuditManager
Methods
ClearAuditEntries(String)
Clears all audit entries in the specified database.
Declaration
void ClearAuditEntries(string connectionString)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | connectionString | The connection string. |
GetAuditEntries(String)
Gets the audit entries for the specified session key.
Declaration
IList<AuditEntry> GetAuditEntries(string connectionString)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | connectionString | The connection string. |
Returns
| Type | Description |
|---|---|
| System.Collections.Generic.IList<AuditEntry> | List of audit entries. |