Click or drag to resize

DataSetBase Class

Contains a set of degree-day data generated to fulfil a DataSpec for a specific Location.
Inheritance Hierarchy

Namespace: DegreeDays.Api.Data
Assembly: DegreeDays (in DegreeDays.dll) Version: 1.4
Syntax
public abstract class DataSetBase

The DataSetBase type exposes the following members.

Properties
 NameDescription
Public propertyFullRange Gets the DayRange indicating the period of time that is covered by this data set.
Public propertyPercentageEstimated Gets the number between 0 and 100 (both inclusive) indicating the overall extent to which this data set is based on estimated data.
Top
Remarks

We would have called this class "DataSet", but we didn't want its name to conflict with that of .NET's System.Data.DataSet class (to which this class has no relation).

This abstract class is not designed to be extended by third-party code, which is why it does not have an accessible constructor.

Thread Safety
All concrete subclasses of this abstract class are immutable. You can safely reuse them and call them from multiple threads at once.
See Also