Interface ILogAdapter
West Wind Web Toolkit for ASP.NET
 Interface ILogAdapter
public interface ILogAdapter

Interface Members

MemberDescription
Clear Clears the Log store completely
public bool Clear();
public bool Clear(int countToLeave);
CreateLog Creates the a standard Log store if it doesn't exist
public bool CreateLog();
DeleteLog Deletes the log file completely
public bool DeleteLog();
GetEntries Retrieves a filtered list of entries
public IDataReader GetEntries(ErrorLevels errorLevel,
    int count,
    DateTime? dateFrom,
    DateTime? dateTo,
    string FieldList);
GetEntry Retireves an individual entry from the log
public WebLogEntry GetEntry(int id);
GetEntryList Returns a filtered list of entries as a strongly typed list
public IEnumerable<WebLogEntry> GetEntryList(ErrorLevels errorLevel,
    int count,
    DateTime? dateFrom,
    DateTime? dateTo,
    string FieldList);
WriteEntry Writes an entry into the log
public bool WriteEntry(WebLogEntry webEntry);
ConnectionString ConnectionString or other string that identifies the output medium
LogFilename The name of the log file if a file is involved

Requirements

Namespace: Westwind.Utilities.Logging
Assembly: westwind.utilities.dll

Last Updated: 12/15/12 | © West Wind Technologies, 1996-2012
Comment or report problem with topic