Reads processed history data 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> HistoryReadProcessedExt(
	string pointName,
	string additionalBrowsePath,
	DateTime startTime,
	DateTime endTime,
	double resampleInterval,
	string aggregateTypeName,
	AggregateConfiguration aggregateConfiguration,
	int readTimeout
)
Visual Basic
Public Function HistoryReadProcessedExt ( _
	pointName As String, _
	additionalBrowsePath As String, _
	startTime As DateTime, _
	endTime As DateTime, _
	resampleInterval As Double, _
	aggregateTypeName As String, _
	aggregateConfiguration As AggregateConfiguration, _
	readTimeout As Integer _
) As IEnumerable(Of SampleValue)
JScript
public function HistoryReadProcessedExt(
	pointName : String, 
	additionalBrowsePath : String, 
	startTime : DateTime, 
	endTime : DateTime, 
	resampleInterval : double, 
	aggregateTypeName : String, 
	aggregateConfiguration : AggregateConfiguration, 
	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).
startTime
Type: System..::..DateTime
Beginning of period to read.
endTime
Type: System..::..DateTime
End of period to read.
resampleInterval
Type: System..::..Double
Interval between returned aggregate values. 0 indicates that there is no interval defined. The value is in milliseconds.
aggregateTypeName
Type: System..::..String
Name of the aggregate to be used when retrieving processed data (use Ico.Fwx.ClientWrapper.AggregateTypeNames).
aggregateConfiguration
Type: Ico.Fwx.ClientWrapper..::..AggregateConfiguration
Specifies the processing details.
readTimeout
Type: System..::..Int32
Timeout for the read operation. The value is in milliseconds.

Return Value

Collection of the SampleValue items.

See Also