Click or drag to resize

CoverageDataSetCoverageData Method

Sets the coverage data. This is used by derived classes when it's necessary to compute results during construction, prior to storing the data.

Namespace:  AGI.Foundation.Coverage
Assembly:  AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
protected void SetCoverageData(
	TimeIntervalCollection considered,
	TimeIntervalCollection satisfied,
	TimeIntervalCollection unknown,
	IList<Object> assets,
	IList<AccessQueryResult> assetResults
)

Parameters

considered
Type: AGI.Foundation.TimeTimeIntervalCollection
The time intervals considered for the coverage analysis.
satisfied
Type: AGI.Foundation.TimeTimeIntervalCollection
The time intervals which have coverage.
unknown
Type: AGI.Foundation.TimeTimeIntervalCollection
The time intervals over which coverage cannot be determined.
assets
Type: System.Collections.GenericIListObject
The list of asset objects which were considered when determining coverage.
assetResults
Type: System.Collections.GenericIListAccessQueryResult
The list of access results corresponding to each asset in the list of assets.
See Also