Custom macro method timeout

Brandon White asked on September 10, 2018 19:52

Is there a way to set the timeout of a custom macro within the code instead of when it it is called as a macro parameter? Basically override the default 1000ms so I don't have to update all places where a macro is placed?

Recent Answers


Brenden Kehren answered on September 10, 2018 20:11

In your custom code, try this before executing anything else:

context.EvaluationTimeout = 5000;
0 votesVote for this answer Mark as a Correct answer

   Please, sign in to be able to submit a new answer.