Share via


MonoWebAssemblyJSRuntime Class

Definition

Provides methods for invoking JavaScript functions for applications running on the Mono WebAssembly runtime.

public ref class MonoWebAssemblyJSRuntime : Microsoft::JSInterop::JSInProcessRuntime
public class MonoWebAssemblyJSRuntime : Microsoft.JSInterop.JSInProcessRuntime
type MonoWebAssemblyJSRuntime = class
    inherit JSInProcessRuntime
Public Class MonoWebAssemblyJSRuntime
Inherits JSInProcessRuntime
Inheritance
MonoWebAssemblyJSRuntime

Constructors

MonoWebAssemblyJSRuntime()

Properties

DefaultAsyncTimeout

Gets or sets the default timeout for asynchronous JavaScript calls.

(Inherited from JSRuntime)
JsonSerializerOptions

Gets the JsonSerializerOptions used to serialize and deserialize interop payloads.

(Inherited from JSRuntime)

Methods

BeginInvokeJS(Int64, String, String)

Begins an asynchronous function invocation.

EndInvokeDotNet(DotNetInvocationInfo, DotNetInvocationResult)
Initialize(MonoWebAssemblyJSRuntime)

Initializes the MonoWebAssemblyJSRuntime to be used to perform operations using DotNetDispatcher.

Invoke<TValue>(String, Object[])

Invokes the specified JavaScript function synchronously.

(Inherited from JSInProcessRuntime)
InvokeAsync<TValue>(String, CancellationToken, Object[])

Invokes the specified JavaScript function asynchronously.

(Inherited from JSRuntime)
InvokeAsync<TValue>(String, Object[])

Invokes the specified JavaScript function asynchronously.

JSRuntime will apply timeouts to this operation based on the value configured in DefaultAsyncTimeout. To dispatch a call with a different, or no timeout, consider using InvokeAsync<TValue>(String, CancellationToken, Object[]).

(Inherited from JSRuntime)
InvokeJS(String, String)

Performs a synchronous function invocation.

InvokeUnmarshalled<T0,T1,T2,TRes>(String, T0, T1, T2)

Invokes the JavaScript function registered with the specified identifier.

InvokeUnmarshalled<T0,T1,TRes>(String, T0, T1)

Invokes the JavaScript function registered with the specified identifier.

InvokeUnmarshalled<T0,TRes>(String, T0)

Invokes the JavaScript function registered with the specified identifier.

InvokeUnmarshalled<TRes>(String)

Invokes the JavaScript function registered with the specified identifier.

Extension Methods

InvokeVoid(IJSInProcessRuntime, String, Object[])

Invokes the specified JavaScript function synchronously.

InvokeAsync<TValue>(IJSRuntime, String, Object[])

Invokes the specified JavaScript function asynchronously.

JSRuntime will apply timeouts to this operation based on the value configured in DefaultAsyncTimeout. To dispatch a call with a different timeout, or no timeout, consider using InvokeAsync<TValue>(String, CancellationToken, Object[]).

InvokeAsync<TValue>(IJSRuntime, String, CancellationToken, Object[])

Invokes the specified JavaScript function asynchronously.

InvokeAsync<TValue>(IJSRuntime, String, TimeSpan, Object[])

Invokes the specified JavaScript function asynchronously.

InvokeVoidAsync(IJSRuntime, String, Object[])

Invokes the specified JavaScript function asynchronously.

InvokeVoidAsync(IJSRuntime, String, CancellationToken, Object[])

Invokes the specified JavaScript function asynchronously.

InvokeVoidAsync(IJSRuntime, String, TimeSpan, Object[])

Invokes the specified JavaScript function asynchronously.

Applies to