Asynchronously Browse the current node for all child nodes and build a TreeNode structure
The nodes returned depends on the selection parameters.
Syntax
Visual Basic (Usage) | Copy Code |
---|
Dim instance As BrowseTree
Dim currNode As NodeId
Dim OneLevelOnly As Boolean
Dim IncludeItems As Boolean
Dim callback As AsyncCallback
Dim asyncState As Object
instance.BeginBrowse(currNode, OneLevelOnly, IncludeItems, callback, asyncState)
|
Parameters
- currNode
- NodeId of the node to be browsed
- OneLevelOnly
- if true the browse is limited to the current node.
- IncludeItems
- if true all node classes are returned in the browse result, otherwise only ObjectNodes.
- callback
- The callback to use when the async call completes.
- asyncState
- The user data that is passed to the callback.
Requirements
Target Platforms: Windows 7/8/10, Windows Server 2003/2008/2012/2015, .NET4.x
See Also