C# Класс Rhino.ContinuationPending

Наследование: System.Exception
Показать файл Открыть проект

Открытые методы

Метод Описание
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