Click or drag to resize

CoverageData.SetCoverageData 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.3.420.0 (24.3.420.0)
Syntax
protected void SetCoverageData(
	TimeIntervalCollection considered,
	TimeIntervalCollection satisfied,
	TimeIntervalCollection unknown,
	IList<Object> assets,
	IList<AccessQueryResult> assetResults
)

Parameters

considered
Type: AGI.Foundation.Time.TimeIntervalCollection
The time intervals considered for the coverage analysis.
satisfied
Type: AGI.Foundation.Time.TimeIntervalCollection
The time intervals which have coverage.
unknown
Type: AGI.Foundation.Time.TimeIntervalCollection
The time intervals over which coverage cannot be determined.
assets
Type: System.Collections.Generic.IList<Object>
The list of asset objects which were considered when determining coverage.
assetResults
Type: System.Collections.Generic.IList<AccessQueryResult>
The list of access results corresponding to each asset in the list of assets.
See Also