| EvaluatorGroupParameterizeTResult Method (MotionEvaluatorTResult, ParameterAction) | 
 
            Parameterizes an evaluator with zero parameters.
            
 
    Namespace: 
   AGI.Foundation
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
 Syntax
Syntaxpublic ParameterizedMotionEvaluator<TResult> Parameterize<TResult>(
	MotionEvaluator<TResult> evaluatorToParameterize,
	ParameterAction parameterAction
)
Public Function Parameterize(Of TResult) ( 
	evaluatorToParameterize As MotionEvaluator(Of TResult),
	parameterAction As ParameterAction
) As ParameterizedMotionEvaluator(Of TResult)
public:
generic<typename TResult>
ParameterizedMotionEvaluator<TResult>^ Parameterize(
	MotionEvaluator<TResult>^ evaluatorToParameterize, 
	ParameterAction parameterAction
)
member Parameterize : 
        evaluatorToParameterize : MotionEvaluator<'TResult> * 
        parameterAction : ParameterAction -> ParameterizedMotionEvaluator<'TResult> 
Parameters
- evaluatorToParameterize
- Type: AGI.FoundationMotionEvaluatorTResult
 The evaluator to parameterize.
- parameterAction
- Type: AGI.Foundation.InfrastructureParameterAction
 Indicates whether an exception should be thrown if any of the specified parameters are not actually
            parameters to the evaluatorToParameterize.
Type Parameters
- TResult
- The type of the result of evaluating the evaluator.
Return Value
Type: 
ParameterizedMotionEvaluatorTResultAn evaluator that can be evaluated with the given parameters.
 Exceptions
Exceptions See Also
See Also