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
Cancellation token cancelToken is ignored by EnumerateDirectory implementation, although the underlying implementation of Core.ListStatusAsync supports it.
I would propose passing the token down to the REST call wrapper.
internalIEnumerable<DirectoryEntry>EnumerateDirectory(stringpath,intmaxEntries,stringlistAfter,stringlistBefore,UserGroupRepresentationuserIdFormat= UserGroupRepresentation.ObjectID,CancellationTokencancelToken=default(CancellationToken)){if(string.IsNullOrEmpty(path)){thrownew ArgumentException("Path is null");}returnnewFileStatusOutput<DirectoryEntry>(listBefore, listAfter, maxEntries, userIdFormat,this, path);}
The text was updated successfully, but these errors were encountered:
Cancellation token
cancelToken
is ignored byEnumerateDirectory
implementation, although the underlying implementation ofCore.ListStatusAsync
supports it.I would propose passing the token down to the REST call wrapper.
The text was updated successfully, but these errors were encountered: