LogOnController.LogOn Method |
Logs the user on using standard log on options.
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]
[ProducesResponseTypeAttribute(401)]
[ProducesResponseTypeAttribute(405)]
public ActionResult<LogOnResultData> LogOn(
[FromBodyAttribute] LogOnOptions options
)
<HttpPostAttribute>
<ProducesResponseTypeAttribute(401)>
<ProducesResponseTypeAttribute(405)>
Public Function LogOn (
<FromBodyAttribute> options As LogOnOptions
) As ActionResult(Of LogOnResultData)
public:
[HttpPostAttribute]
[ProducesResponseTypeAttribute(401)]
[ProducesResponseTypeAttribute(405)]
ActionResult<LogOnResultData^>^ LogOn(
[FromBodyAttribute] LogOnOptions^ options
)
[<HttpPostAttribute>]
[<ProducesResponseTypeAttribute(401)>]
[<ProducesResponseTypeAttribute(405)>]
member LogOn :
[<FromBodyAttribute>] options : LogOnOptions -> ActionResult<LogOnResultData>
Parameters
- options
- Type: Dundas.BI.WebApi.Models.LogOnOptions
The options for log on (credentials, token, name/password, windows log on).
Return Value
Type:
ActionResult<LogOnResultData>The operation completed successfully. The payload contains a
LogOnResultData object.
See Also