Skip to content

Commit c15f5fe

Browse files
committed
API feedback: make RenderHandle.DispatchExceptionAsync internal
1 parent f8f9a84 commit c15f5fe

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#nullable enable
22
Microsoft.AspNetCore.Components.ComponentBase.DispatchExceptionAsync(System.Exception! exception) -> System.Threading.Tasks.Task!
3-
Microsoft.AspNetCore.Components.RenderHandle.DispatchExceptionAsync(System.Exception! exception) -> System.Threading.Tasks.Task!
43
*REMOVED*Microsoft.AspNetCore.Components.NavigationManager.ToAbsoluteUri(string! relativeUri) -> System.Uri!
5-
Microsoft.AspNetCore.Components.NavigationManager.ToAbsoluteUri(string? relativeUri) -> System.Uri!
4+
Microsoft.AspNetCore.Components.NavigationManager.ToAbsoluteUri(string? relativeUri) -> System.Uri!

src/Components/Components/src/RenderHandle.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public void Render(RenderFragment renderFragment)
7070
/// </summary>
7171
/// <param name="exception">The <see cref="Exception"/> that will be dispatched to the renderer.</param>
7272
/// <returns>A <see cref="Task"/> that will be completed when the exception has finished dispatching.</returns>
73-
public Task DispatchExceptionAsync(Exception exception)
73+
internal Task DispatchExceptionAsync(Exception exception)
7474
{
7575
var renderer = _renderer;
7676
var componentId = _componentId;

0 commit comments

Comments
 (0)