2 writes to DefaultAsyncTimeout
Microsoft.AspNetCore.Components.Server (1)
Circuits\RemoteJSRuntime.cs (1)
48DefaultAsyncTimeout = _options.JSInteropDefaultCallTimeout;
Microsoft.JSInterop.Tests (1)
JSRuntimeTest.cs (1)
455base.DefaultAsyncTimeout = value;
28 references to DefaultAsyncTimeout
Microsoft.JSInterop (28)
IJSObjectReference.cs (5)
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. 54/// (<see cref="JSRuntime.DefaultAsyncTimeout"/>) from being applied. 75/// (<see cref="JSRuntime.DefaultAsyncTimeout"/>) from being applied. 97/// (<see cref="JSRuntime.DefaultAsyncTimeout"/>) from being applied.
IJSRuntime.cs (5)
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. 54/// (<see cref="JSRuntime.DefaultAsyncTimeout"/>) from being applied. 75/// (<see cref="JSRuntime.DefaultAsyncTimeout"/>) from being applied. 97/// (<see cref="JSRuntime.DefaultAsyncTimeout"/>) from being applied.
JSObjectReferenceExtensions.cs (7)
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> 142/// (<see cref="JSRuntime.DefaultAsyncTimeout"/>) from being applied. 158/// <param name="timeout">The duration after which to cancel the async operation. Overrides default timeouts (<see cref="JSRuntime.DefaultAsyncTimeout"/>).</param>
JSRuntime.cs (4)
62/// <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, 80/// (<see cref="DefaultAsyncTimeout"/>) from being applied. 113if (DefaultAsyncTimeout.HasValue) 115using var cts = new CancellationTokenSource(DefaultAsyncTimeout.Value);
JSRuntimeExtensions.cs (7)
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> 142/// (<see cref="JSRuntime.DefaultAsyncTimeout"/>) from being applied. 158/// <param name="timeout">The duration after which to cancel the async operation. Overrides default timeouts (<see cref="JSRuntime.DefaultAsyncTimeout"/>).</param>