Proficy Historian Client Access API
Proficy.Historian.ClientAccess.API Namespace / CollectorHierarchicalBrowseResponseHandler Delegate
Whether this is the final response.
Overall operation status.
List of nodes satisfying the browse criteria.
List of leafs satisfying the browse criteria.



In This Topic
    CollectorHierarchicalBrowseResponseHandler Delegate
    In This Topic
    A delegate invoked for collector hierarchical tag browse responses.
    Syntax
    'Declaration
     
    Public Delegate Sub CollectorHierarchicalBrowseResponseHandler( _
       ByVal final As Boolean, _
       ByVal status As Status, _
       ByVal nodes As List(Of BrowseNode), _
       ByVal leafs As List(Of BrowseNode) _
    ) 
    'Usage
     
    Dim instance As New CollectorHierarchicalBrowseResponseHandler(AddressOf HandlerMethod)
    public delegate void CollectorHierarchicalBrowseResponseHandler( 
       bool final,
       Status status,
       List<BrowseNode> nodes,
       List<BrowseNode> leafs
    )
    public delegate void CollectorHierarchicalBrowseResponseHandler( 
       bool final,
       Status status,
       List<BrowseNode^>^ nodes,
       List<BrowseNode^>^ leafs
    )

    Parameters

    final
    Whether this is the final response.
    status
    Overall operation status.
    nodes
    List of nodes satisfying the browse criteria.
    leafs
    List of leafs satisfying the browse criteria.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also