AccessEvaluatorEvaluateIgnoringAvailability Method  | 
 
            Evaluates the query at a specified time without determining whether the underlying
            constraints and geometry are available.  This can produce an improvement in runtime
            performance at the cost of assuming that the underlying data will always be available.
            
 
    Namespace: 
   AGI.Foundation.Access
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic abstract AccessClassification EvaluateIgnoringAvailability(
	JulianDate date
)
Public MustOverride Function EvaluateIgnoringAvailability ( 
	date As JulianDate
) As AccessClassification
public:
virtual AccessClassification EvaluateIgnoringAvailability(
	JulianDate date
) abstract
abstract EvaluateIgnoringAvailability : 
        date : JulianDate -> AccessClassification 
Parameters
- date
 - Type: AGI.Foundation.TimeJulianDate
The time at which to evaluate access. 
Return Value
Type: 
AccessClassificationAn indication of whether the access query is satisfied at this time or not.
Exceptions| Exception | Condition | 
|---|
| DataUnavailableException | This will throw an exception if an evaluator involved
            in the overall access evaluation does not have data available.  The calling code is responsible
            for ensuring that this is only called at times where all data is expected to be available. | 
See Also