Interface ICollectionNode
A node representing all found children of a ICollection
Namespace:FubarDev.WebDavServer.FileSystem
Assembly:FubarDev.WebDavServer.dll
Syntax
public interface ICollectionNode
Properties
| Improve this Doc View SourceCollection
Gets the collection this node is for
Declaration
ICollection Collection { get; }
Property Value
Type | Description |
---|---|
ICollection |
Documents
Gets the documents of this collection node
Declaration
IReadOnlyCollection<IDocument> Documents { get; }
Property Value
Type | Description |
---|---|
IReadOnlyCollection<IDocument> |
Name
Gets the name of the node (usually the same as Name of Collection)
Declaration
string Name { get; }
Property Value
Type | Description |
---|---|
String |
Nodes
Gets the sub collection nodes
Declaration
IReadOnlyCollection<ICollectionNode> Nodes { get; }
Property Value
Type | Description |
---|---|
IReadOnlyCollection<ICollectionNode> |