C# Class Rhino.ContinuationPending

Inheritance: System.Exception
Show file Open project: hazzik/Rhino.Net

Public Methods

Method Description
GetApplicationState ( ) : object
GetContinuation ( ) : object

Get continuation object.

Get continuation object. The only use for this object is to be passed to Context.ResumeContinuation(object, Scriptable, object) .

SetApplicationState ( object applicationState ) : void

Store an arbitrary object that applications can use to associate their state with the continuation.

Store an arbitrary object that applications can use to associate their state with the continuation.

Private Methods

Method Description
ContinuationPending ( NativeContinuation continuationState ) : System

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[])

GetContinuationState ( ) : NativeContinuation

Method Details

GetApplicationState() public method

public GetApplicationState ( ) : object
return object

GetContinuation() public method

Get continuation object.
Get continuation object. The only use for this object is to be passed to Context.ResumeContinuation(object, Scriptable, object) .
public GetContinuation ( ) : object
return object

SetApplicationState() public method

Store an arbitrary object that applications can use to associate their state with the continuation.
Store an arbitrary object that applications can use to associate their state with the continuation.
public SetApplicationState ( object applicationState ) : void
applicationState object arbitrary application state
return void