Reads history data at the requested times of the point.

Namespace: Ico.Fwx.ClientWrapper
Assembly: IcoFwxClientWrapper (in IcoFwxClientWrapper.dll) Version: 10.97.212.0 (10.97.212.00)

Syntax

C#
public IEnumerable<SampleValue> HistoryReadAtTimeExt(
	string pointName,
	string additionalBrowsePath,
	IList<DateTime> requestedTimes,
	int readTimeout
)
Visual Basic
Public Function HistoryReadAtTimeExt ( _
	pointName As String, _
	additionalBrowsePath As String, _
	requestedTimes As IList(Of DateTime), _
	readTimeout As Integer _
) As IEnumerable(Of SampleValue)
JScript
public function HistoryReadAtTimeExt(
	pointName : String, 
	additionalBrowsePath : String, 
	requestedTimes : IList<DateTime>, 
	readTimeout : int
) : IEnumerable<SampleValue>

Parameters

pointName
Type: System..::..String
Point name to read data from.
additionalBrowsePath
Type: System..::..String
Additional browse path (use Ico.Fwx.ClientWrapper.AdditionalBrowsePaths).
requestedTimes
Type: System.Collections.Generic..::..IList<(Of <(<'DateTime>)>)>
The entries define the specific timestamps for which values are to be read.
readTimeout
Type: System..::..Int32
Timeout for the read operation. The value is in milliseconds.

Return Value

Collection of the SampleValue items.

See Also