Rhino.Context.GetInstructionObserverThreshold C# (CSharp) Method

GetInstructionObserverThreshold() public method

Get threshold of executed instructions counter that triggers call to observeInstructionCount().
Get threshold of executed instructions counter that triggers call to observeInstructionCount(). When the threshold is zero, instruction counting is disabled, otherwise each time the run-time executes at least the threshold value of script instructions, observeInstructionCount() will be called.
public GetInstructionObserverThreshold ( ) : int
return int
		public int GetInstructionObserverThreshold()
		{
			return instructionThreshold;
		}
Context