FileController.ClearRecentlyUsed Method |
Clears the most 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[HttpDeleteAttribute("RecentlyUsed")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(440)]
public ActionResult ClearRecentlyUsed(
Guid? sessionId = null,
Guid? accountId = null
)
<HttpDeleteAttribute("RecentlyUsed")>
<ProducesResponseTypeAttribute(403)>
<ProducesResponseTypeAttribute(440)>
Public Function ClearRecentlyUsed (
Optional sessionId As Guid? = Nothing,
Optional accountId As Guid? = Nothing
) As ActionResult
public:
[HttpDeleteAttribute(L"RecentlyUsed")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(440)]
ActionResult^ ClearRecentlyUsed(
Nullable<Guid> sessionId = nullptr,
Nullable<Guid> accountId = nullptr
)
[<HttpDeleteAttribute("RecentlyUsed")>]
[<ProducesResponseTypeAttribute(403)>]
[<ProducesResponseTypeAttribute(440)>]
member ClearRecentlyUsed :
?sessionId : Nullable<Guid> *
?accountId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
let _accountId = defaultArg accountId 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.
Return Value
Type:
ActionResult
See Also