C# 클래스 Rhino.ContinuationPending

상속: System.Exception
파일 보기 프로젝트 열기: hazzik/Rhino.Net

공개 메소드들

메소드 설명
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.

비공개 메소드들

메소드 설명
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

메소드 상세

GetApplicationState() 공개 메소드

public GetApplicationState ( ) : object
리턴 object

GetContinuation() 공개 메소드

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
리턴 object

SetApplicationState() 공개 메소드

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
리턴 void