Make RemoteRendererException internal
Part of: #12221 This was part of a previous PR, but I accidentally removed it during a rebase :( Server/ref/Microsoft.AspNetCore.Components.Server.netcoreapp3.0.cs
This commit is contained in:
parent
ee9ac351f3
commit
f1b23dd2df
|
|
@ -79,13 +79,6 @@ namespace Microsoft.AspNetCore.Components.Server.Circuits
|
||||||
public static void NotifyLocationChanged(string uriAbsolute, bool isInterceptedLink) { }
|
public static void NotifyLocationChanged(string uriAbsolute, bool isInterceptedLink) { }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
namespace Microsoft.AspNetCore.Components.Web.Rendering
|
|
||||||
{
|
|
||||||
public partial class RemoteRendererException : System.Exception
|
|
||||||
{
|
|
||||||
public RemoteRendererException(string message) { }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
namespace Microsoft.Extensions.DependencyInjection
|
namespace Microsoft.Extensions.DependencyInjection
|
||||||
{
|
{
|
||||||
public static partial class ComponentServiceCollectionExtensions
|
public static partial class ComponentServiceCollectionExtensions
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ namespace Microsoft.AspNetCore.Components.Web.Rendering
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Represents an exception related to remote rendering.
|
/// Represents an exception related to remote rendering.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class RemoteRendererException : Exception
|
internal class RemoteRendererException : Exception
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Constructs an instance of <see cref="RemoteRendererException"/>.
|
/// Constructs an instance of <see cref="RemoteRendererException"/>.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue