Proficy Historian Client Access API
Proficy.Historian.ClientAccess.API Namespace / ICollectors Interface / Reload Method
A collector name.
List of tag names to recalculate.
Start time.
End time.



In This Topic
    Reload Method
    In This Topic
    Initiate a reload of a Historian collector which causes one or more tags to be re-calculated for a specific time interval. Only supported by ServerToServer and Calculation collectors.
    Syntax
    'Declaration
     
    Sub Reload( _
       ByVal collectorname As String, _
       ByVal tagnames As List(Of String), _
       ByVal start As Date, _
       ByVal end As Date _
    ) 
    'Usage
     
    Dim instance As ICollectors
    Dim collectorname As String
    Dim tagnames As List(Of String)
    Dim start As Date
    Dim end As Date
     
    instance.Reload(collectorname, tagnames, start, end)
    void Reload( 
       string collectorname,
       List<string> tagnames,
       DateTime start,
       DateTime end
    )
    void Reload( 
       String^ collectorname,
       List<String^>^ tagnames,
       DateTime start,
       DateTime end
    ) 

    Parameters

    collectorname
    A collector name.
    tagnames
    List of tag names to recalculate.
    start
    Start time.
    end
    End time.
    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