MockAdlsClient.EnumerateDeletedItemsAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Asynchronously gets the trash entries
public override System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.Azure.DataLake.Store.TrashEntry>> EnumerateDeletedItemsAsync (string hint, string listAfter, int numResults, IProgress<Microsoft.Azure.DataLake.Store.EnumerateDeletedItemsProgress> progressTracker, System.Threading.CancellationToken cancelToken);
override this.EnumerateDeletedItemsAsync : string * string * int * IProgress<Microsoft.Azure.DataLake.Store.EnumerateDeletedItemsProgress> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<seq<Microsoft.Azure.DataLake.Store.TrashEntry>>
Public Overrides Function EnumerateDeletedItemsAsync (hint As String, listAfter As String, numResults As Integer, progressTracker As IProgress(Of EnumerateDeletedItemsProgress), cancelToken As CancellationToken) As Task(Of IEnumerable(Of TrashEntry))
Parameters
- hint
- String
String to match. Cannot be empty.
- listAfter
- String
Token returned by system in the previous API invocation
- numResults
- Int32
Search is executed until we find numResults or search completes. Maximum allowed value for this param is 4000. The number of returned entries could be more or less than numResults
- progressTracker
- IProgress<EnumerateDeletedItemsProgress>
Object to track progress of the task. Can be null
- cancelToken
- CancellationToken
CancellationToken to cancel the request
Returns
Applies to
Azure SDK for .NET