HealthController.CancelHealthCheck Method |
Cancels the health check with the corresponding context ID.
Namespace:
Dundas.BI.WebApi.Controllers
Assembly:
Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntax[HttpDeleteAttribute]
[ProducesResponseTypeAttribute(204)]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
public ActionResult CancelHealthCheck(
Guid contextId,
Guid? sessionId = null
)
<HttpDeleteAttribute>
<ProducesResponseTypeAttribute(204)>
<ProducesResponseTypeAttribute(403)>
<ProducesResponseTypeAttribute(410)>
<ProducesResponseTypeAttribute(440)>
Public Function CancelHealthCheck (
contextId As Guid,
Optional sessionId As Guid? = Nothing
) As ActionResult
public:
[HttpDeleteAttribute]
[ProducesResponseTypeAttribute(204)]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
ActionResult^ CancelHealthCheck(
Guid contextId,
Nullable<Guid> sessionId = nullptr
)
[<HttpDeleteAttribute>]
[<ProducesResponseTypeAttribute(204)>]
[<ProducesResponseTypeAttribute(403)>]
[<ProducesResponseTypeAttribute(410)>]
[<ProducesResponseTypeAttribute(440)>]
member CancelHealthCheck :
contextId : Guid *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult
Parameters
- contextId
- Type: System.Guid
The context ID of the health check. - sessionId (Optional)
- Type: System.Nullable<Guid>
The current session ID.
Return Value
Type:
ActionResult
See Also