parent
d641dffdc1
commit
3039748ccf
|
|
@ -69,6 +69,15 @@ 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<Microsoft.AspNetCore.Components.Server.Circuits.RemoteUriHelper> 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
|
||||
{
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ namespace Microsoft.AspNetCore.Components.Server.Circuits
|
|||
/// <summary>
|
||||
/// A Server-Side Components implementation of <see cref="IUriHelper"/>.
|
||||
/// </summary>
|
||||
internal class RemoteUriHelper : UriHelperBase
|
||||
public class RemoteUriHelper : UriHelperBase
|
||||
{
|
||||
private readonly ILogger<RemoteUriHelper> _logger;
|
||||
private IJSRuntime _jsRuntime;
|
||||
|
|
|
|||
Loading…
Reference in New Issue