ILogOnService.GetLogOnHistoryAsCsv Method |
Gets the logon history as a CSV file records.
Namespace:
Dundas.BI.AccountServices
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.1.0.1000)
SyntaxIEnumerable<string> GetLogOnHistoryAsCsv(
IList<Tuple<LogOnHistoryQueryField, SortDirection>>? orderBy,
ICollection<LogOnHistoryQueryFilterRule>? filter
)
Function GetLogOnHistoryAsCsv (
orderBy As IList(Of Tuple(Of LogOnHistoryQueryField, SortDirection)),
filter As ICollection(Of LogOnHistoryQueryFilterRule)
) As IEnumerable(Of String)
IEnumerable<String^>^ GetLogOnHistoryAsCsv(
IList<Tuple<LogOnHistoryQueryField, SortDirection>^>^ orderBy,
ICollection<LogOnHistoryQueryFilterRule^>^ filter
)
abstract GetLogOnHistoryAsCsv :
orderBy : IList<Tuple<LogOnHistoryQueryField, SortDirection>> *
filter : ICollection<LogOnHistoryQueryFilterRule> -> IEnumerable<string>
Parameters
- orderBy
- Type: System.Collections.Generic.IList<Tuple<LogOnHistoryQueryField, SortDirection>>
The sort order of the result, or null if the order does not matter. - filter
- Type: System.Collections.Generic.ICollection<LogOnHistoryQueryFilterRule>
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 logon history.
Exceptions
See Also