Rhino.ContinuationPending.ContinuationPending C# (CSharp) Method

ContinuationPending() private method

Construct a ContinuationPending exception.
Construct a ContinuationPending exception. Internal call only; users of the API should get continuations created on their behalf by calling Context.ExecuteScriptWithContinuations(Script, Scriptable) and Context.CallFunctionWithContinuations(Callable, Scriptable, object[])
private ContinuationPending ( NativeContinuation continuationState ) : System
continuationState NativeContinuation Internal Continuation object
return System
		internal ContinuationPending(NativeContinuation continuationState)
		{
			this.continuationState = continuationState;
		}