ILoggingServiceGetLogEntryHistoryAsCsv Method

Gets the log entries history as a CSV file records.

Namespace: Dundas.BI
Assembly: Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (26.2.0.1000)
Syntax
IEnumerable<string> GetLogEntryHistoryAsCsv(
	IList<Tuple<LogEntryQueryField, SortDirection>>? orderBy,
	ICollection<LogEntryQueryFilterRule>? filter
)

Parameters

orderBy  IListTupleLogEntryQueryField, SortDirection
The sort order of the result, or if the order does not matter.
filter  ICollectionLogEntryQueryFilterRule
The filter rules which should be applied to the query, or if no filters are required.

Return Value

IEnumerableString
CSV file records containing the log entries history.
Exceptions
ExceptionCondition
NoPrivilegeExceptionThe caller does not have administrative privileges.
InvalidSessionExceptionThe caller context is not associated with a valid session.
See Also