SessionController.GetCurrentSession Method |
Gets current session.
Namespace:
Dundas.BI.WebApi.Controllers
Assembly:
Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntax[HttpGetAttribute("Current")]
[ProducesResponseTypeAttribute(440)]
public ActionResult<SessionData> GetCurrentSession()
<HttpGetAttribute("Current")>
<ProducesResponseTypeAttribute(440)>
Public Function GetCurrentSession As ActionResult(Of SessionData)
public:
[HttpGetAttribute(L"Current")]
[ProducesResponseTypeAttribute(440)]
ActionResult<SessionData^>^ GetCurrentSession()
[<HttpGetAttribute("Current")>]
[<ProducesResponseTypeAttribute(440)>]
member GetCurrentSession : unit -> ActionResult<SessionData>
Return Value
Type:
ActionResult<SessionData>The operation completed successfully. The payload contains a
SessionData object.
See Also