Proficy Historian Client Access API
Proficy.Historian.ClientAccess.API Namespace / ServerConnection Class / OnCollectorHierarchicalBrowseResponse Method
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
    OnCollectorHierarchicalBrowseResponse Method
    In This Topic
    Invoked by the remote server to transmit hierarchical tag browse information. Large hierarchical browse requests may generate multiple individual responses. Not all collectors support hierarchical tag browsing.
    Syntax
    Public Sub OnCollectorHierarchicalBrowseResponse( _
       ByVal final As System.Boolean, _
       ByVal status As Status, _
       ByVal nodes As System.Collections.Generic.List(Of BrowseNode), _
       ByVal leafs As System.Collections.Generic.List(Of BrowseNode) _
    ) 
    public void OnCollectorHierarchicalBrowseResponse( 
       System.bool final,
       Status status,
       System.Collections.Generic.List<BrowseNode> nodes,
       System.Collections.Generic.List<BrowseNode> leafs
    )
    public:
    void OnCollectorHierarchicalBrowseResponse( 
       System.bool final,
       Status status,
       System.Collections.Generic.List<BrowseNode^>^ nodes,
       System.Collections.Generic.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