8 implementations of IHandleAfterRender
BasicTestApp (2)
ServerReliability\ThrowingOnAfterRenderAsyncComponent.cs (1)
8public class ThrowingOnAfterRenderAsyncComponent : IComponent, IHandleAfterRender
ServerReliability\ThrowingOnAfterRenderSyncComponent.cs (1)
8public class ThrowingOnAfterRenderSyncComponent : IComponent, IHandleAfterRender
Microsoft.AspNetCore.Components (2)
ComponentBase.cs (1)
22public abstract class ComponentBase : IComponent, IHandleEvent, IHandleAfterRender
Routing\Router.cs (1)
19public partial class Router : IComponent, IHandleAfterRender, IDisposable
Microsoft.AspNetCore.Components.Server.Tests (1)
Circuits\RemoteRendererTest.cs (1)
729private class TestComponent : IComponent, IHandleAfterRender
Microsoft.AspNetCore.Components.Tests (2)
RendererTest.cs (2)
5499private class AfterRenderCaptureComponent : AutoRenderComponent, IComponent, IHandleAfterRender 5874private class AsyncAfterRenderComponent : AutoRenderComponent, IHandleAfterRender
Microsoft.AspNetCore.Components.Web (1)
Routing\NavigationLock.cs (1)
12public sealed class NavigationLock : IComponent, IHandleAfterRender, IAsyncDisposable
5 references to IHandleAfterRender
Microsoft.AspNetCore.Components (3)
ComponentBase.cs (1)
365Task IHandleAfterRender.OnAfterRenderAsync()
Rendering\ComponentState.cs (1)
135if (Component is IHandleAfterRender handlerAfterRender)
Routing\Router.cs (1)
323async Task IHandleAfterRender.OnAfterRenderAsync()
Microsoft.AspNetCore.Components.Server.Tests (1)
Circuits\CircuitHostTest.cs (1)
905private class TestComponent() : IComponent, IHandleAfterRender
Microsoft.AspNetCore.Components.Web (1)
Routing\NavigationLock.cs (1)
74async Task IHandleAfterRender.OnAfterRenderAsync()