/// <summary>
 /// Sets the runtime name for requested evaluators in the same request. The batch of Evaluators requested in the
 /// same request will have the same runtime name.
 /// </summary>
 /// <param name="runtimeName">The runtime name for the Evaluator request.</param>
 public EvaluatorRequestBuilder SetRuntimeName(RuntimeName runtimeName)
 {
     _runtimeName = (runtimeName == RuntimeName.Default) ? string.Empty : runtimeName.ToString();
     return(this);
 }
Example #2
0
 /// <summary>
 /// Sets the runtime name for requested evaluators in the same request. The batch of Evaluators requested in the 
 /// same request will have the same runtime name.
 /// </summary>
 /// <param name="runtimeName">The runtime name for the Evaluator request.</param>
 public EvaluatorRequestBuilder SetRuntimeName(RuntimeName runtimeName)
 {
     _runtimeName = (runtimeName == RuntimeName.Default) ? string.Empty : runtimeName.ToString();
     return this;
 }