|   | ArchiveReaderReadData(Int32, Boolean) Method | 
        
        
        
        Namespace: GSF.Historian.FilesAssembly: GSF.Historian (in GSF.Historian.dll) Version: 2.4.257-beta
 Syntax
Syntaxpublic IEnumerable<IDataPoint> ReadData(
	int historianID,
	bool timeSorted = true
)
Public Function ReadData ( 
	historianID As Integer,
	Optional timeSorted As Boolean = true
) As IEnumerable(Of IDataPoint)
public:
IEnumerable<IDataPoint^>^ ReadData(
	int historianID, 
	bool timeSorted = true
)
member ReadData : 
        historianID : int * 
        ?timeSorted : bool 
(* Defaults:
        let _timeSorted = defaultArg timeSorted true
*)
-> IEnumerable<IDataPoint> function ReadData(historianID, timeSorted);
Parameters
- historianID  Int32
- Historian identifier for which ArchiveDataPoints are to be retrieved.
- timeSorted  Boolean  (Optional)
- Indicates whether the data retrieved from the archive should be time sorted.
Return Value
IEnumerableIDataPointIEnumerableT object containing zero or more 
ArchiveDataPoints.
 See Also
See Also