LogOnController.GenerateDownloadHistoryFile Method |
Generates the download file for the log on history.
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("DownloadHistory")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(405)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<Guid> GenerateDownloadHistoryFile(
[FromBodyAttribute] QueryLogOnHistoryOptions options,
Guid? sessionId = null
)
<HttpPostAttribute("DownloadHistory")>
<ProducesResponseTypeAttribute(403)>
<ProducesResponseTypeAttribute(405)>
<ProducesResponseTypeAttribute(440)>
Public Function GenerateDownloadHistoryFile (
<FromBodyAttribute> options As QueryLogOnHistoryOptions,
Optional sessionId As Guid? = Nothing
) As ActionResult(Of Guid)
public:
[HttpPostAttribute(L"DownloadHistory")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(405)]
[ProducesResponseTypeAttribute(440)]
ActionResult<Guid>^ GenerateDownloadHistoryFile(
[FromBodyAttribute] QueryLogOnHistoryOptions^ options,
Nullable<Guid> sessionId = nullptr
)
[<HttpPostAttribute("DownloadHistory")>]
[<ProducesResponseTypeAttribute(403)>]
[<ProducesResponseTypeAttribute(405)>]
[<ProducesResponseTypeAttribute(440)>]
member GenerateDownloadHistoryFile :
[<FromBodyAttribute>] options : QueryLogOnHistoryOptions *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult<Guid>
Parameters
- options
- Type: Dundas.BI.WebApi.Models.QueryLogOnHistoryOptions
An object that carries all need information about the log entries that are going to be downloaded. - sessionId (Optional)
- Type: System.Nullable<Guid>
Current session ID.
Return Value
Type:
ActionResult<Guid>The operation completed successfully. The payload contains a
Guid corresponding to the file name.
See Also