File tree Expand file tree Collapse file tree 3 files changed +5
-7
lines changed
Mvc/Mvc.ViewFeatures/src/DependencyInjection Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 11// Licensed to the .NET Foundation under one or more agreements.
22// The .NET Foundation licenses this file to you under the MIT license.
33
4- using System ;
54using System . Diagnostics . CodeAnalysis ;
65using System . Runtime . ExceptionServices ;
76using Microsoft . AspNetCore . Components . RenderTree ;
Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ Microsoft.AspNetCore.Components.Web.HtmlComponent.ToHtmlString() -> string!
44Microsoft.AspNetCore.Components.Web.HtmlComponent.WaitForQuiescenceAsync() -> System.Threading.Tasks.Task!
55Microsoft.AspNetCore.Components.Web.HtmlComponent.WriteHtmlTo(System.IO.TextWriter! output) -> void
66Microsoft.AspNetCore.Components.Web.HtmlRenderer
7- Microsoft.AspNetCore.Components.Web.HtmlRenderer.BeginRenderingComponent<TComponent>() -> Microsoft.AspNetCore.Components.Web.HtmlContent !
8- Microsoft.AspNetCore.Components.Web.HtmlRenderer.BeginRenderingComponent<TComponent>(Microsoft.AspNetCore.Components.ParameterView parameters) -> Microsoft.AspNetCore.Components.Web.HtmlContent !
7+ Microsoft.AspNetCore.Components.Web.HtmlRenderer.BeginRenderingComponent<TComponent>() -> Microsoft.AspNetCore.Components.Web.HtmlComponent !
8+ Microsoft.AspNetCore.Components.Web.HtmlRenderer.BeginRenderingComponent<TComponent>(Microsoft.AspNetCore.Components.ParameterView parameters) -> Microsoft.AspNetCore.Components.Web.HtmlComponent !
99Microsoft.AspNetCore.Components.Web.HtmlRenderer.Dispatcher.get -> Microsoft.AspNetCore.Components.Dispatcher!
1010Microsoft.AspNetCore.Components.Web.HtmlRenderer.DisposeAsync() -> System.Threading.Tasks.ValueTask
1111Microsoft.AspNetCore.Components.Web.HtmlRenderer.HtmlRenderer(System.IServiceProvider! services, Microsoft.Extensions.Logging.ILoggerFactory! loggerFactory) -> void
12- Microsoft.AspNetCore.Components.Web.HtmlRenderer.RenderComponentAsync<TComponent>() -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Components.Web.HtmlContent !>!
13- Microsoft.AspNetCore.Components.Web.HtmlRenderer.RenderComponentAsync<TComponent>(Microsoft.AspNetCore.Components.ParameterView parameters) -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Components.Web.HtmlContent !>!
12+ Microsoft.AspNetCore.Components.Web.HtmlRenderer.RenderComponentAsync<TComponent>() -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Components.Web.HtmlComponent !>!
13+ Microsoft.AspNetCore.Components.Web.HtmlRenderer.RenderComponentAsync<TComponent>(Microsoft.AspNetCore.Components.ParameterView parameters) -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Components.Web.HtmlComponent !>!
Original file line number Diff line number Diff line change 55using System . Linq ;
66using Microsoft . AspNetCore . Components ;
77using Microsoft . AspNetCore . Components . Infrastructure ;
8- using Microsoft . AspNetCore . Components . Rendering ;
98using Microsoft . AspNetCore . Components . Routing ;
109using Microsoft . AspNetCore . Components . Web ;
1110using Microsoft . AspNetCore . Mvc ;
@@ -207,7 +206,7 @@ internal static void AddViewServices(IServiceCollection services)
207206 //
208207 services . TryAddScoped < IComponentRenderer , ComponentRenderer > ( ) ;
209208 services . TryAddScoped < StaticComponentRenderer > ( ) ;
210- services . TryAddScoped < HtmlRenderer > ( ) ;
209+ services . TryAddScoped < Microsoft . AspNetCore . Components . Rendering . HtmlRenderer > ( ) ;
211210 services . TryAddScoped < NavigationManager , HttpNavigationManager > ( ) ;
212211 services . TryAddScoped < IJSRuntime , UnsupportedJavaScriptRuntime > ( ) ;
213212 services . TryAddScoped < INavigationInterception , UnsupportedNavigationInterception > ( ) ;
You can’t perform that action at this time.
0 commit comments