Class OpenDIResult
Format for returning results of execution. Includes both the input arguments, and the calculated results.
Assembly: WMServer.dll
Syntax
public class OpenDIResult
Constructors
OpenDIResult(EvaluationArgs, ElementValue, string, string, int)
Declaration
public OpenDIResult(EvaluationArgs procArgs, ElementValue procResult, string dmID, string procID, int idx)
Parameters
Properties
arguments
Declaration
public Dictionary<string, object> arguments { get; set; }
Property Value
decisionModelID
Declaration
public string decisionModelID { get; set; }
Property Value
index
The index of the result in the set.
Declaration
public int index { get; set; }
Property Value
properties
Object containing properties associated with the object that are not specified by the Open DI standard.
Open DI places no restrictions on what these are named, or their content.
Declaration
public Dictionary<string, object> properties { get; set; }
Property Value
results
Declaration
public Dictionary<string, OpenDIValue> results { get; set; }
Property Value