| Overload | Description | 
|---|---|
| BrowseTree(IEasyUAClient,UABrowseArguments) | Allows to traverse through OPC UA address space nodes under the specified node, using given browse arguments. | 
| BrowseTree(IEasyUAClient,UABrowseArguments,Func<IEnumerable<UANodeElement>,IEnumerable<UANodeElement>>) | Allows to traverse through OPC UA address space nodes under the specified node, using given browse arguments, transforming the sequence of child node elements using a specified function. | 
| BrowseTree(IEasyUAClient,UAEndpointDescriptor) | Allows to traverse through OPC UA address space data nodes under the ObjectsFolder node. | 
| BrowseTree(IEasyUAClient,UAEndpointDescriptor,UANodeDescriptor) | Allows to traverse through OPC UA address space data nodes under the specified node. | 
| BrowseTree(IEasyUAClient,UAEndpointDescriptor,UANodeDescriptor,UABrowseParameters) | Allows to traverse through OPC UA address space nodes under the specified node, using given browse parameters. | 
| BrowseTree(IEasyUAClient,UAEndpointDescriptor,UANodeDescriptor,UABrowseParameters,Predicate<UANodeElement>) | Allows to traverse through OPC UA address space nodes under the specified node, using given browse parameters, and allowing only nodes that fulfill a specified predicate into the traversal. | 
| BrowseTree(IEasyUAClient,UAEndpointDescriptor,UANodeDescriptor,UABrowseParameters,Func<IEnumerable<UANodeElement>,IEnumerable<UANodeElement>>) | Allows to traverse through OPC UA address space nodes under the specified node, using given browse parameters, transforming the sequence of child node elements using a specified function. |