CoverageDataGetSatisfactionForAsset Method |
Get the intervals where both access and coverage exist for the given asset.
Namespace:
AGI.Foundation.Coverage
Assembly:
AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public TimeIntervalCollection GetSatisfactionForAsset(
Object asset
)
Public Function GetSatisfactionForAsset (
asset As Object
) As TimeIntervalCollection
public:
TimeIntervalCollection^ GetSatisfactionForAsset(
Object^ asset
)
member GetSatisfactionForAsset :
asset : Object -> TimeIntervalCollection
Parameters
- asset
- Type: SystemObject
The asset providing coverage.
Return Value
Type:
TimeIntervalCollection
If the given asset provides satisfactory coverage, this returns the satisfaction intervals.
If the given asset has access, but there is no coverage, it returns an empty collection.
Exceptions Remarks
If certain other assets preclude the given asset from providing coverage despite its having
access to the coverage target, the access intervals and the coverage satisfaction intervals may not coincide.
To obtain the full access intervals, use
GetAccessResultsForAsset(Object).
See Also