Class JSRuntimeInvocationNotSetException
- Namespace
- Bunit
- Assembly
- bunit.dll
Exception used to indicate that an invocation was received by a JSRuntime invocation handler, but the handler was not configured with a result (via SetResult, SetVoidResult, SetCanceled, or SetException). This causes the invocation to hang indefinitely.
public sealed class JSRuntimeInvocationNotSetException : Exception, ISerializable
- Inheritance
-
JSRuntimeInvocationNotSetException
- Implements
- Inherited Members
- Extension Methods
Constructors
JSRuntimeInvocationNotSetException(JSRuntimeInvocation)
Initializes a new instance of the JSRuntimeInvocationNotSetException class with the provided Invocation attached.
public JSRuntimeInvocationNotSetException(JSRuntimeInvocation invocation)
Parameters
invocationJSRuntimeInvocationThe invocation that was not provided with a result.
Properties
Invocation
Gets the invocation that was not handled with a result.
public JSRuntimeInvocation Invocation { get; }