Proficy Historian Client Access API
Proficy.Historian.ClientAccess.API Namespace / CollectorBrowseResponseHandler Delegate
Whether this is the final response.
Overall operation status.
A list of collector tags satisfying the browse criteria.



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

    Parameters

    final
    Whether this is the final response.
    status
    Overall operation status.
    tags
    A list of collector tags 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