C# Class Rhino.ContinuationPending

Inheritance: System.Exception
Afficher le fichier Open project: hazzik/Rhino.Net

Méthodes publiques

Méthode 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

Méthode 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 méthode

public GetApplicationState ( ) : object
Résultat object

GetContinuation() public méthode

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
Résultat object

SetApplicationState() public méthode

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
Résultat void