FileController.GetRecentlyUsed 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[HttpGetAttribute("RecentlyUsed")]
[ProducesResponseTypeAttribute(440)]
public ActionResult<FileData[]> GetRecentlyUsed(
string? objectTypesString = null,
Guid? sessionId = null
)
<HttpGetAttribute("RecentlyUsed")>
<ProducesResponseTypeAttribute(440)>
Public Function GetRecentlyUsed (
Optional objectTypesString As String = Nothing,
Optional sessionId As Guid? = Nothing
) As ActionResult(Of FileData())
public:
[HttpGetAttribute(L"RecentlyUsed")]
[ProducesResponseTypeAttribute(440)]
ActionResult<array<FileData^>^>^ GetRecentlyUsed(
String^ objectTypesString = nullptr,
Nullable<Guid> sessionId = nullptr
)
[<HttpGetAttribute("RecentlyUsed")>]
[<ProducesResponseTypeAttribute(440)>]
member GetRecentlyUsed :
?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