Proficy Historian Client Access API
Proficy.Historian.ClientAccess.API Namespace / ServerConnection Class / OnCollectorCurrentValueResponse Method
Whether this is the final response.
Overall operation status.
The set of current tag values.
List of tags with errors.



In This Topic
    OnCollectorCurrentValueResponse Method
    In This Topic
    Invoked by the remote server to transmit current collector tag values. Requesting many current values may generate multiple individual responses.
    Syntax
    'Declaration
     
    Public Sub OnCollectorCurrentValueResponse( _
       ByVal final As Boolean, _
       ByVal status As Status, _
       ByVal dataset As DataSet, _
       ByVal errors As ItemErrors _
    ) 
    'Usage
     
    Dim instance As ServerConnection
    Dim final As Boolean
    Dim status As Status
    Dim dataset As DataSet
    Dim errors As ItemErrors
     
    instance.OnCollectorCurrentValueResponse(final, status, dataset, errors)
    public void OnCollectorCurrentValueResponse( 
       bool final,
       Status status,
       DataSet dataset,
       ItemErrors errors
    )
    public:
    void OnCollectorCurrentValueResponse( 
       bool final,
       Status status,
       DataSet^ dataset,
       ItemErrors^ errors
    ) 

    Parameters

    final
    Whether this is the final response.
    status
    Overall operation status.
    dataset
    The set of current tag values.
    errors
    List of tags with errors.
    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