AccessQueryGetEvaluator Method (IServiceProvider, EvaluatorGroup) | 
 
            Gets an evaluator that can be used to evaluate this query for a given time or for intervals of time.
            
 
    Namespace: 
   AGI.Foundation.Access
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic abstract AccessEvaluator GetEvaluator(
	IServiceProvider timeObserver,
	EvaluatorGroup group
)
Public MustOverride Function GetEvaluator ( 
	timeObserver As IServiceProvider,
	group As EvaluatorGroup
) As AccessEvaluator
public:
virtual AccessEvaluator^ GetEvaluator(
	IServiceProvider^ timeObserver, 
	EvaluatorGroup^ group
) abstract
abstract GetEvaluator : 
        timeObserver : IServiceProvider * 
        group : EvaluatorGroup -> AccessEvaluator 
Parameters
- timeObserver
 - Type: SystemIServiceProvider
The IServiceProvider time observer to use when evaluating this query. - group
 - Type: AGI.FoundationEvaluatorGroup
      The group with which to associate the new evaluator.  By grouping evaluators
      that are often evaluated at the same Julian dates, common computations can be performed only once
      for the entire group instead of multiple times for each evaluator.
     
Return Value
Type: 
AccessEvaluatorThe evaluator.
See Also