2 writes to DefaultAsyncTimeout
Microsoft.AspNetCore.Components.Server (1)
Circuits\RemoteJSRuntime.cs (1)
48DefaultAsyncTimeout = _options.JSInteropDefaultCallTimeout;
Microsoft.JSInterop.Tests (1)
JSRuntimeTest.cs (1)
449base.DefaultAsyncTimeout = value;
18 references to DefaultAsyncTimeout
Microsoft.JSInterop (18)
IJSObjectReference.cs (2)
17/// <see cref="JSRuntime"/> will apply timeouts to this operation based on the value configured in <see cref="JSRuntime.DefaultAsyncTimeout"/>. To dispatch a call with a different, or no timeout, 34/// (<see cref="JSRuntime.DefaultAsyncTimeout"/>) from being applied.
IJSRuntime.cs (2)
17/// <see cref="JSRuntime"/> will apply timeouts to this operation based on the value configured in <see cref="JSRuntime.DefaultAsyncTimeout"/>. To dispatch a call with a different timeout, or no timeout, 34/// (<see cref="JSRuntime.DefaultAsyncTimeout"/>) from being applied.
JSObjectReferenceExtensions.cs (5)
32/// <see cref="JSRuntime"/> will apply timeouts to this operation based on the value configured in <see cref="JSRuntime.DefaultAsyncTimeout"/>. To dispatch a call with a different timeout, or no timeout, 56/// (<see cref="JSRuntime.DefaultAsyncTimeout"/>) from being applied. 74/// (<see cref="JSRuntime.DefaultAsyncTimeout"/>) from being applied. 90/// <param name="timeout">The duration after which to cancel the async operation. Overrides default timeouts (<see cref="JSRuntime.DefaultAsyncTimeout"/>).</param> 108/// <param name="timeout">The duration after which to cancel the async operation. Overrides default timeouts (<see cref="JSRuntime.DefaultAsyncTimeout"/>).</param>
JSRuntime.cs (4)
60/// <see cref="JSRuntime"/> will apply timeouts to this operation based on the value configured in <see cref="DefaultAsyncTimeout"/>. To dispatch a call with a different, or no timeout, 78/// (<see cref="DefaultAsyncTimeout"/>) from being applied. 87if (DefaultAsyncTimeout.HasValue) 89using var cts = new CancellationTokenSource(DefaultAsyncTimeout.Value);
JSRuntimeExtensions.cs (5)
32/// <see cref="JSRuntime"/> will apply timeouts to this operation based on the value configured in <see cref="JSRuntime.DefaultAsyncTimeout"/>. To dispatch a call with a different timeout, or no timeout, 56/// (<see cref="JSRuntime.DefaultAsyncTimeout"/>) from being applied. 74/// (<see cref="JSRuntime.DefaultAsyncTimeout"/>) from being applied. 90/// <param name="timeout">The duration after which to cancel the async operation. Overrides default timeouts (<see cref="JSRuntime.DefaultAsyncTimeout"/>).</param> 108/// <param name="timeout">The duration after which to cancel the async operation. Overrides default timeouts (<see cref="JSRuntime.DefaultAsyncTimeout"/>).</param>