LogOnController.QueryLogOnHistoryCount Method |
Gets the number of log on history items that match the filter.
Namespace:
Dundas.BI.WebApi.Controllers
Assembly:
Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntax[HttpPostAttribute("QueryHistoryCount")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(405)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<int> QueryLogOnHistoryCount(
[FromBodyAttribute] QueryLogOnHistoryOptions options,
Guid? sessionId = null
)
<HttpPostAttribute("QueryHistoryCount")>
<ProducesResponseTypeAttribute(403)>
<ProducesResponseTypeAttribute(405)>
<ProducesResponseTypeAttribute(440)>
Public Function QueryLogOnHistoryCount (
<FromBodyAttribute> options As QueryLogOnHistoryOptions,
Optional sessionId As Guid? = Nothing
) As ActionResult(Of Integer)
public:
[HttpPostAttribute(L"QueryHistoryCount")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(405)]
[ProducesResponseTypeAttribute(440)]
ActionResult<int>^ QueryLogOnHistoryCount(
[FromBodyAttribute] QueryLogOnHistoryOptions^ options,
Nullable<Guid> sessionId = nullptr
)
[<HttpPostAttribute("QueryHistoryCount")>]
[<ProducesResponseTypeAttribute(403)>]
[<ProducesResponseTypeAttribute(405)>]
[<ProducesResponseTypeAttribute(440)>]
member QueryLogOnHistoryCount :
[<FromBodyAttribute>] options : QueryLogOnHistoryOptions *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult<int>
Parameters
- options
- Type: Dundas.BI.WebApi.Models.QueryLogOnHistoryOptions
An object that carries all needed information about the log on history that needs to be retrieved. - sessionId (Optional)
- Type: System.Nullable<Guid>
Current session ID.
Return Value
Type:
ActionResult<Int32>The operation completed successfully. The payload contains a
Int32 containing the number of log on history entries that match the criteria.
See Also