| AccessConstraintGetEvaluator 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)
 Syntax
Syntaxpublic override sealed AccessEvaluator GetEvaluator(
	IServiceProvider timeObserver,
	EvaluatorGroup group
)
Public Overrides NotOverridable Function GetEvaluator ( 
	timeObserver As IServiceProvider,
	group As EvaluatorGroup
) As AccessEvaluator
public:
virtual AccessEvaluator^ GetEvaluator(
	IServiceProvider^ timeObserver, 
	EvaluatorGroup^ group
) override sealed
abstract GetEvaluator : 
        timeObserver : IServiceProvider * 
        group : EvaluatorGroup -> AccessEvaluator 
override 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
See Also