Click or drag to resize

cTimeSeriesTextReader Class

Reads one or more time series from a text input source.
Inheritance Hierarchy

Namespace:  EwECore
Assembly:  EwECore (in EwECore.dll) Version: 6.6.15981.0 (6.6.15981.0)
Syntax
public abstract class cTimeSeriesTextReader : ICollection<cTimeSeriesImport>

The cTimeSeriesTextReader type exposes the following members.

Constructors
  NameDescription
Public methodcTimeSeriesTextReader
Constructor, initializes a new instance of this class.
Top
Properties
  NameDescription
Public propertyCount
Returns the number of items in the collection.
Public propertyDataset
Public propertyFirstYear
Returns the first year of time series data found by the reader.
Public propertyIsReadOnly
States whether the collection is read-only.
Public propertyNumPoints
Returns the number of years of time series data found by the reader.
Public propertyNumYears Obsolete.
Returns the number of years of time series data found by the reader.
Top
Methods
  NameDescription
Public methodAdd
Add an item to the collection.
Public methodClear
Clears the collection.
Public methodContains
Returns whether the collection contains a given item.
Public methodCopyTo
Copies the collection to a strong-typed array of cTimeSeries objects.
Public methodDecimalSeparator
Returns the decimal separator used by the reader.
Public methodDelimiter
Returns the delimiter used by the reader.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetEnumerator
Returns a strong-typed enumerator for this collection.
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetReader
The one entry point to access the source text reader. Override this method to implement a connection to the appropriate text source. Note that the reader obtained via this method should be released by overriding ReleaseReader.
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodPreview
Returns a double indexed array of strings with a preview of read time series data. Data is indexed by (column, row). Indexes are zero based.
Public methodRead
Reads any number of Time Series data from a text source. The Time Series are exposed by this collection as cTimeSeries objects.
Public methodReleaseReader
The one entry point to release a text reader obtained via GetReader.
Public methodRemove
Removes an item to the collection.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Extension Methods
  NameDescription
Public Extension MethodValue
Extension method; extract a value from an object by property name.
(Defined by Extensions.)
Top
Remarks
Time series text input format is hopefully described in the latest manual.
See Also