Delegate ActionNodeDelegate
A delegate used to perform an action on a specific node during node traversal.
Namespace: AkiraNetwork.VirtualStorageLibrary
Assembly: VirtualStorageLibrary.dll
Syntax
public delegate bool ActionNodeDelegate(VirtualDirectory parentDirectory, VirtualNodeName nodeName, VirtualPath nodePath)
Parameters
| Type | Name | Description |
|---|---|---|
| VirtualDirectory | parentDirectory | The parent directory of the target node. |
| VirtualNodeName | nodeName | The name of the target node. |
| VirtualPath | nodePath | The path of the target node. |
Returns
| Type | Description |
|---|---|
| bool | Returns true to continue node traversal, or false to stop node traversal. |