FileController.CheckIn Method (Guid, CheckInOptions, Nullable<Guid>) |
Checks in the file with the specified ID and comments.
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("CheckIn/{id}")]
[ProducesResponseTypeAttribute(440)]
public ActionResult<CheckInResultData> CheckIn(
Guid id,
[FromBodyAttribute] CheckInOptions options,
Guid? sessionId = null
)
<HttpPostAttribute("CheckIn/{id}")>
<ProducesResponseTypeAttribute(440)>
Public Function CheckIn (
id As Guid,
<FromBodyAttribute> options As CheckInOptions,
Optional sessionId As Guid? = Nothing
) As ActionResult(Of CheckInResultData)
public:
[HttpPostAttribute(L"CheckIn/{id}")]
[ProducesResponseTypeAttribute(440)]
ActionResult<CheckInResultData^>^ CheckIn(
Guid id,
[FromBodyAttribute] CheckInOptions^ options,
Nullable<Guid> sessionId = nullptr
)
[<HttpPostAttribute("CheckIn/{id}")>]
[<ProducesResponseTypeAttribute(440)>]
member CheckIn :
id : Guid *
[<FromBodyAttribute>] options : CheckInOptions *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult<CheckInResultData>
Parameters
- id
- Type: System.Guid
The ID of the file to check in. - options
- Type: Dundas.BI.WebApi.Models.CheckInOptions
The options for this check in. - sessionId (Optional)
- Type: System.Nullable<Guid>
ID of the current session.
Return Value
Type:
ActionResult<CheckInResultData>The operation completed successfully. The payload contains an
CheckInResultData object.
See Also