Class EvaluationResult
Stores the result of an evaluation, such as is returned by a call to Evaluate(EvaluationArgs, string, string, WMAppDbContext).
Inherited Members
Namespace: Quantellia.WMServer.Execution
Assembly: WMServer.dll
Syntax
public class EvaluationResult
Properties
Arguments
The arguments passed to the evaluation processor.
Declaration
public Dictionary<string, object> Arguments { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<string, object> |
ProcessorID
The ID of the processor used to evaluate this result.
Declaration
public string ProcessorID { get; set; }
Property Value
Type | Description |
---|---|
string |
Result
The result of the evaluation
Declaration
public ElementValue Result { get; set; }
Property Value
Type | Description |
---|---|
ElementValue |