FileSystemEntryControllerBase.GetMostRecentlyUsed 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(440)]
protected ActionResult<FileData[]> GetMostRecentlyUsed(
string? objectTypesString = null,
Guid? sessionId = null
)
<ProducesResponseTypeAttribute(440)>
Protected Function GetMostRecentlyUsed (
Optional objectTypesString As String = Nothing,
Optional sessionId As Guid? = Nothing
) As ActionResult(Of FileData())
protected:
[ProducesResponseTypeAttribute(440)]
ActionResult<array<FileData^>^>^ GetMostRecentlyUsed(
String^ objectTypesString = nullptr,
Nullable<Guid> sessionId = nullptr
)
[<ProducesResponseTypeAttribute(440)>]
member GetMostRecentlyUsed :
?objectTypesString : string *
?sessionId : Nullable<Guid>
(* Defaults:
let _objectTypesString = defaultArg objectTypesString null
let _sessionId = defaultArg sessionId null
*)
-> ActionResult<FileData[]>
Parameters
- objectTypesString (Optional)
- Type: System.String
The comma-separated string of ObjectType values to be used for filtering the result, or null if entries of any type are returned. - sessionId (Optional)
- Type: System.Nullable<Guid>
Current session ID.
Return Value
Type:
ActionResult<FileData[]>The operation completed successfully. The payload contains an array of
FileData objects.
See Also