ILoggingService.GetLogEntryHistoryAsCsv 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 (25.1.0.1000)
SyntaxIEnumerable<string> GetLogEntryHistoryAsCsv(
IList<Tuple<LogEntryQueryField, SortDirection>>? orderBy,
ICollection<LogEntryQueryFilterRule>? filter
)
Function GetLogEntryHistoryAsCsv (
orderBy As IList(Of Tuple(Of LogEntryQueryField, SortDirection)),
filter As ICollection(Of LogEntryQueryFilterRule)
) As IEnumerable(Of String)
IEnumerable<String^>^ GetLogEntryHistoryAsCsv(
IList<Tuple<LogEntryQueryField, SortDirection>^>^ orderBy,
ICollection<LogEntryQueryFilterRule^>^ filter
)
abstract GetLogEntryHistoryAsCsv :
orderBy : IList<Tuple<LogEntryQueryField, SortDirection>> *
filter : ICollection<LogEntryQueryFilterRule> -> IEnumerable<string>
Parameters
- orderBy
- Type: System.Collections.Generic.IList<Tuple<LogEntryQueryField, SortDirection>>
The sort order of the result, or null if the order does not matter. - filter
- Type: System.Collections.Generic.ICollection<LogEntryQueryFilterRule>
The filter rules which should be applied to the query, or null if no filters are required.
Return Value
Type:
IEnumerable<String>CSV file records containing the log entries history.
Exceptions
See Also