Welcome to mirror list, hosted at ThFree Co, Russian Federation.

7.0-rc1_Microsoft.AspNetCore.Components.md « Microsoft.AspNetCore.App « rc1 « api-diff « preview « 7.0 « release-notes - github.com/dotnet/core.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9771622cfd869b4b201c7e19db8431ac76c61426 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Microsoft.AspNetCore.Components

``` diff
 namespace Microsoft.AspNetCore.Components {
     public abstract class NavigationManager {
+        protected virtual void HandleLocationChangingHandlerException(Exception ex, LocationChangingContext context);
+        protected ValueTask<bool> NotifyLocationChangingAsync(string uri, string? state, bool isNavigationIntercepted);
+        public IDisposable RegisterLocationChangingHandler(Func<LocationChangingContext, ValueTask> locationChangingHandler);
+        protected virtual void SetNavigationLockState(bool value);
     }
 }
```