9 references to DispatchSubmitEventAsync
Microsoft.AspNetCore.Components.Endpoints (1)
RazorComponentEndpointInvoker.cs (1)
118
quiesceTask = _renderer.
DispatchSubmitEventAsync
(result.HandlerName, out isBadRequest);
Microsoft.AspNetCore.Components.Endpoints.Tests (8)
EndpointHtmlRendererTest.cs (8)
1116
var exception = await Assert.ThrowsAsync<InvalidOperationException>(() => renderer.
DispatchSubmitEventAsync
("default", out isBadRequest));
1140
await renderer.
DispatchSubmitEventAsync
("default", out isBadRequest);
1166
await renderer.
DispatchSubmitEventAsync
(null, out isBadRequest);
1195
await renderer.
DispatchSubmitEventAsync
("other", out isBadRequest);
1226
await renderer.Dispatcher.InvokeAsync(() => renderer.
DispatchSubmitEventAsync
("default", out isBadRequest));
1262
await renderer.Dispatcher.InvokeAsync(() => renderer.
DispatchSubmitEventAsync
("my-name", out isBadRequest));
1304
await renderer.Dispatcher.InvokeAsync(() => renderer.
DispatchSubmitEventAsync
("my-name-2", out isBadRequest));
1309
await renderer.Dispatcher.InvokeAsync(() => renderer.
DispatchSubmitEventAsync
("my-name-1", out isBadRequest));