FileSystemEntryControllerBaseTouchEntry Method (Guid, NullableGuid) |
Updates the last modified time of the entries with the specified IDs.
Namespace:
Dundas.BI.WebApi.Controllers
Assembly:
Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (10.0.0.1002)
Syntaxprotected IActionResult TouchEntry(
[FromBodyAttribute] Guid[] entryIds,
Guid? sessionId = null
)
Protected Function TouchEntry (
<FromBodyAttribute> entryIds As Guid(),
Optional sessionId As Guid? = Nothing
) As IActionResult
protected:
IActionResult^ TouchEntry(
[FromBodyAttribute] array<Guid>^ entryIds,
Nullable<Guid> sessionId = nullptr
)
member TouchEntry :
[<FromBodyAttribute>] entryIds : Guid[] *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> IActionResult
Parameters
- entryIds
- Type: SystemGuid
The IDs of the entries to update. - sessionId (Optional)
- Type: SystemNullableGuid
ID of the session.
Return Value
Type:
IActionResultA status code indicating success or the reason for failure.
See Also