Rhino.NativeGenerator.CloseGeneratorAction._Callable_84.Call C# (CSharp) Method

Call() public method

public Call ( Context cx, Scriptable scope, Scriptable thisObj, object args ) : object
cx Context
scope Scriptable
thisObj Scriptable
args object
return object
				public object Call(Context cx, Scriptable scope, Scriptable thisObj, object[] args)
				{
					return ((NativeGenerator)thisObj).Resume(cx, scope, NativeGenerator.GENERATOR_CLOSE, new NativeGenerator.GeneratorClosedException());
				}
			}
NativeGenerator.CloseGeneratorAction._Callable_84