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.2.419.0 (24.2.419.0)
Syntax protected void SetCoverageData(
TimeIntervalCollection considered,
TimeIntervalCollection satisfied,
TimeIntervalCollection unknown,
IList<Object> assets,
IList<AccessQueryResult> assetResults
)
Protected Sub SetCoverageData (
considered As TimeIntervalCollection,
satisfied As TimeIntervalCollection,
unknown As TimeIntervalCollection,
assets As IList(Of Object),
assetResults As IList(Of AccessQueryResult)
)
protected:
void SetCoverageData(
TimeIntervalCollection^ considered,
TimeIntervalCollection^ satisfied,
TimeIntervalCollection^ unknown,
IList<Object^>^ assets,
IList<AccessQueryResult^>^ assetResults
)
member SetCoverageData :
considered : TimeIntervalCollection *
satisfied : TimeIntervalCollection *
unknown : TimeIntervalCollection *
assets : IList<Object> *
assetResults : IList<AccessQueryResult> -> unit
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