FileSystemEntryControllerBase.AddToMostRecentlyUsed Method |
Adds the given file ID to the list of recently used items.
Namespace:
Dundas.BI.WebApi.Controllers
Assembly:
Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntax[ProducesResponseTypeAttribute(440)]
protected ActionResult<bool> AddToMostRecentlyUsed(
Guid id,
Guid? sessionId = null
)
<ProducesResponseTypeAttribute(440)>
Protected Function AddToMostRecentlyUsed (
id As Guid,
Optional sessionId As Guid? = Nothing
) As ActionResult(Of Boolean)
protected:
[ProducesResponseTypeAttribute(440)]
ActionResult<bool>^ AddToMostRecentlyUsed(
Guid id,
Nullable<Guid> sessionId = nullptr
)
[<ProducesResponseTypeAttribute(440)>]
member AddToMostRecentlyUsed :
id : Guid *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult<bool>
Parameters
- id
- Type: System.Guid
The ID of the file to add. - sessionId (Optional)
- Type: System.Nullable<Guid>
Current session ID.
Return Value
Type:
ActionResult<Boolean>The operation completed successfully. The payload contains a
Boolean value indicating whether the item was added or not.
See Also