You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The FoldersManager.GetTrashItemsAsync() method includes a handful of parameters but doesn't include 'sort' and 'direction' which is supported in the 'List trashed items' API documentation here. https://developer.box.com/reference/get-folders-trash-items/
Versions Used
.NET SDK: Box.V2.Core 3.22.0
Steps to Reproduce
//Try to add a parameter beyond those defined in BoxFoldersManager.cs
trashedItems = await boxClient.FoldersManager.GetTrashItemsAsync(folderLimit, folderOffset, itemFields, false, sort: date);
Error Message, Including Stack Trace
CS0103 The name 'date' does not exist in the current context
It would be very helpful to have these additional parameters when working with trash items.
Thank you
The text was updated successfully, but these errors were encountered:
Description of the Issue
The FoldersManager.GetTrashItemsAsync() method includes a handful of parameters but doesn't include 'sort' and 'direction' which is supported in the 'List trashed items' API documentation here.
https://developer.box.com/reference/get-folders-trash-items/
Versions Used
.NET SDK: Box.V2.Core 3.22.0
Steps to Reproduce
//Try to add a parameter beyond those defined in BoxFoldersManager.cs
trashedItems = await boxClient.FoldersManager.GetTrashItemsAsync(folderLimit, folderOffset, itemFields, false, sort: date);
Error Message, Including Stack Trace
CS0103 The name 'date' does not exist in the current context
It would be very helpful to have these additional parameters when working with trash items.
Thank you
The text was updated successfully, but these errors were encountered: