diff --git a/src/Components/Server/ref/Microsoft.AspNetCore.Components.Server.netcoreapp3.0.cs b/src/Components/Server/ref/Microsoft.AspNetCore.Components.Server.netcoreapp3.0.cs index aa7d69e3f9..f58aeb175a 100644 --- a/src/Components/Server/ref/Microsoft.AspNetCore.Components.Server.netcoreapp3.0.cs +++ b/src/Components/Server/ref/Microsoft.AspNetCore.Components.Server.netcoreapp3.0.cs @@ -69,15 +69,6 @@ namespace Microsoft.AspNetCore.Components.Server.Circuits public virtual System.Threading.Tasks.Task OnConnectionDownAsync(Microsoft.AspNetCore.Components.Server.Circuits.Circuit circuit, System.Threading.CancellationToken cancellationToken) { throw null; } public virtual System.Threading.Tasks.Task OnConnectionUpAsync(Microsoft.AspNetCore.Components.Server.Circuits.Circuit circuit, System.Threading.CancellationToken cancellationToken) { throw null; } } - public partial class RemoteUriHelper : Microsoft.AspNetCore.Components.UriHelperBase - { - public RemoteUriHelper(Microsoft.Extensions.Logging.ILogger logger) { } - public bool HasAttachedJSRuntime { get { throw null; } } - public override void InitializeState(string uriAbsolute, string baseUriAbsolute) { } - protected override void NavigateToCore(string uri, bool forceLoad) { } - [Microsoft.JSInterop.JSInvokableAttribute("NotifyLocationChanged")] - public static void NotifyLocationChanged(string uriAbsolute, bool isInterceptedLink) { } - } } namespace Microsoft.AspNetCore.Components.Web.Rendering { diff --git a/src/Components/Server/src/Circuits/RemoteUriHelper.cs b/src/Components/Server/src/Circuits/RemoteUriHelper.cs index f89e917db0..e9a1b28494 100644 --- a/src/Components/Server/src/Circuits/RemoteUriHelper.cs +++ b/src/Components/Server/src/Circuits/RemoteUriHelper.cs @@ -12,7 +12,7 @@ namespace Microsoft.AspNetCore.Components.Server.Circuits /// /// A Server-Side Components implementation of . /// - public class RemoteUriHelper : UriHelperBase + internal class RemoteUriHelper : UriHelperBase { private readonly ILogger _logger; private IJSRuntime _jsRuntime;