HealthController.IsAlive Method |
Gets an empty OK result to indicate that the Dundas BI application is running.
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("IsAlive")]
[ProducesResponseTypeAttribute(503)]
public ActionResult IsAlive()
<HttpGetAttribute("IsAlive")>
<ProducesResponseTypeAttribute(503)>
Public Function IsAlive As ActionResult
public:
[HttpGetAttribute(L"IsAlive")]
[ProducesResponseTypeAttribute(503)]
ActionResult^ IsAlive()
[<HttpGetAttribute("IsAlive")>]
[<ProducesResponseTypeAttribute(503)>]
member IsAlive : unit -> ActionResult
Return Value
Type:
ActionResult
Remarks
A ServiceUnavailable response status code will be returned if a connection to the application database could
not be established.
See Also