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.1.0.1000)
Syntax[HttpGetAttribute("IsAlive")]
public IActionResult IsAlive()
<HttpGetAttribute("IsAlive")>
Public Function IsAlive As IActionResult
public:
[HttpGetAttribute(L"IsAlive")]
IActionResult^ IsAlive()
[<HttpGetAttribute("IsAlive")>]
member IsAlive : unit -> IActionResult
Return Value
Type:
IActionResult
A
OK status indicating success; otherwise,
ServiceUnavailable with
an explanatory message in the response body.
Remarks
A ServiceUnavailable response status code will be returned if a connection to the application database could
not be established.
See Also