Interface IRecusiveChildrenCollector
A collection implementing this interface allows a more efficient collection of child entries
Namespace:FubarDev.WebDavServer.FileSystem
Assembly:FubarDev.WebDavServer.dll
Syntax
public interface IRecusiveChildrenCollector
Methods
| Improve this Doc View SourceGetEntries(Int32)
Gets all child entries up to the depth of maxDepth
Declaration
[NotNull]
IAsyncEnumerable<IEntry> GetEntries(int maxDepth)
Parameters
Type | Name | Description |
---|---|---|
Int32 | maxDepth | The maximum depth (MaxValue as infinity) |
Returns
Type | Description |
---|---|
System.Collections.Generic.IAsyncEnumerable<IEntry> | All found child entries |