FileSystemEntryControllerBase.ClearMostRecentlyUsed Method |
Gets the most recently used files for the current user.
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(403)]
[ProducesResponseTypeAttribute(440)]
protected ActionResult ClearMostRecentlyUsed(
Guid? sessionId = null,
Guid? accountId = null,
Guid? tenantId = null
)
<ProducesResponseTypeAttribute(403)>
<ProducesResponseTypeAttribute(440)>
Protected Function ClearMostRecentlyUsed (
Optional sessionId As Guid? = Nothing,
Optional accountId As Guid? = Nothing,
Optional tenantId As Guid? = Nothing
) As ActionResult
protected:
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(440)]
ActionResult^ ClearMostRecentlyUsed(
Nullable<Guid> sessionId = nullptr,
Nullable<Guid> accountId = nullptr,
Nullable<Guid> tenantId = nullptr
)
[<ProducesResponseTypeAttribute(403)>]
[<ProducesResponseTypeAttribute(440)>]
member ClearMostRecentlyUsed :
?sessionId : Nullable<Guid> *
?accountId : Nullable<Guid> *
?tenantId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
let _accountId = defaultArg accountId null
let _tenantId = defaultArg tenantId null
*)
-> ActionResult
Parameters
- sessionId (Optional)
- Type: System.Nullable<Guid>
Current session ID. - accountId (Optional)
- Type: System.Nullable<Guid>
The optional account ID to clear the most recently used only for a specific account. - tenantId (Optional)
- Type: System.Nullable<Guid>
The tenant ID corresponding to the account.
Return Value
Type:
ActionResult
See Also