@@ -41,7 +41,7 @@ public void RequestNavigate(string regionName, string viewName, bool requestNew,
4141 } ) ;
4242 }
4343 }
44- public void RequestNavigate ( string regionName , string viewName , NavigationParameters ? parameters = null )
44+ public void RequestViewNavigate ( string regionName , string viewName , NavigationParameters ? parameters = null )
4545 {
4646 var context = new NavigationContext ( viewName , regionName , _serviceProvider , parameters ) ;
4747 if ( _regions . TryGetValue ( regionName , out var region ) )
@@ -93,7 +93,7 @@ public void AddRegion(string regionName, IRegion region)
9393 return region ;
9494 }
9595
96- public void RequestUnload ( string regionName , string viewName )
96+ public void RequestViewUnload ( string regionName , string viewName )
9797 {
9898 if ( _regions . TryGetValue ( regionName , out var region ) )
9999 {
@@ -104,7 +104,7 @@ public void RequestUnload(string regionName, string viewName)
104104 throw new RegionNameNotFoundException ( nameof ( regionName ) ) ;
105105 }
106106 }
107- public void RequestUnload ( NavigationContext navigationContext )
107+ public void RequestViewUnload ( NavigationContext navigationContext )
108108 {
109109 if ( _regions . TryGetValue ( navigationContext . RegionName , out var region ) )
110110 {
@@ -165,4 +165,23 @@ private void ToRegionsObservers(IRegion region)
165165 }
166166 }
167167
168+ public void RequestModuleNavigate ( string regionName , string moduleName , NavigationParameters ? parameters )
169+ {
170+ throw new NotImplementedException ( ) ;
171+ }
172+
173+ public void RequestModuleNavigate ( string regionName , IModule module , NavigationParameters ? parameters )
174+ {
175+ throw new NotImplementedException ( ) ;
176+ }
177+
178+ public void RequestModuleUnload ( string moduleName , string viewName )
179+ {
180+ throw new NotImplementedException ( ) ;
181+ }
182+
183+ public void RequestModuleUnload ( IModule module )
184+ {
185+ throw new NotImplementedException ( ) ;
186+ }
168187}
0 commit comments