EvaluationState
Enum of possible python evaluation states.
using Autodesk.DesignScript.Runtime;
namespace Dynamo.PythonServices
{
[SupressImportIntoVM]
public enum EvaluationState
{
Success,
Failed
}
}