Request historical data in the time range specified. The session's buffer will get no more that pageSize top records. data in the buffer are guaranteed to be sorted by time in the descending order - latest entries first.

Namespace: Ico.Awx
Assembly: AwxClientCommon (in AwxClientCommon.dll) Version: 10.97.212.0 (10.97.212.00)

Syntax

C#
public bool Refresh(
	DateTime startTime,
	DateTime endTime,
	int pageSize,
	int requestSize,
	bool alignTimeZones
)
Visual Basic
Public Function Refresh ( _
	startTime As DateTime, _
	endTime As DateTime, _
	pageSize As Integer, _
	requestSize As Integer, _
	alignTimeZones As Boolean _
) As Boolean
JScript
public function Refresh(
	startTime : DateTime, 
	endTime : DateTime, 
	pageSize : int, 
	requestSize : int, 
	alignTimeZones : boolean
) : boolean

Parameters

startTime
Type: System..::..DateTime
endTime
Type: System..::..DateTime
pageSize
Type: System..::..Int32
requestSize
Type: System..::..Int32
alignTimeZones
Type: System..::..Boolean

Remarks

Start time and End time MUST BE in local time!!!!

See Also