3 instantiations of NavigationService
PresentationFramework (3)
src\Framework\System\Windows\Application.cs (1)
1684NavService = new NavigationService(null);
src\Framework\System\Windows\Controls\Frame.cs (1)
168_navigationService = new NavigationService(this);
src\Framework\System\Windows\Navigation\NavigationWindow.cs (1)
249_navigationService = new NavigationService(this);
72 references to NavigationService
PresentationFramework (72)
src\Framework\MS\Internal\AppModel\ApplicationProxyInternal.cs (2)
555NavigationService topNavSvc = _rbw.Value.NavigationService; 768NavigationService navigationService = null;
src\Framework\MS\Internal\AppModel\INavigator.cs (1)
32NavigationService Downloader
src\Framework\MS\Internal\AppModel\Journaling.cs (2)
361internal static int GetParentPageJournalIndex(NavigationService NavigationService, Journal journal, PageFunctionBase endingPF) 593NavigationService ns = idl != null ? idl.Downloader : null;
src\Framework\MS\Internal\AppModel\JournalNavigationScope.cs (5)
338NavigationService navigationService = _rootNavSvc.FindTarget(entry.NavigationServiceId); 458internal NavigationService RootNavigationService 515NavigationService ns = _rootNavSvc.FindTarget(entry.NavigationServiceId); 536private NavigationService _rootNavSvc; // == _host.NavigationService 548NavigationService NavigationService { get; }
src\Framework\MS\Internal\AppModel\RootBrowserWindow.cs (3)
766private void VerifyWebOCOverlap(NavigationService navigationService) 770NavigationService childNavService = (NavigationService)(navigationService.ChildNavigationServices[i]);
src\Framework\MS\Internal\Data\ObjectRef.cs (1)
190d.ReadLocalValue(System.Windows.Navigation.NavigationService.NavigationServiceProperty) == DependencyProperty.UnsetValue)
src\Framework\MS\Internal\Documents\Application\DocumentApplicationJournalEntry.cs (1)
76public override void Replay(NavigationService navigationService, NavigationMode mode)
src\Framework\MS\Internal\Utility\BindUriHelper.cs (3)
138NavigationService ns = null; 139ns = element.GetValue(NavigationService.NavigationServiceProperty) as NavigationService;
src\Framework\System\Windows\Application.cs (2)
2087internal NavigationService NavService 2795private NavigationService _navService;
src\Framework\System\Windows\Controls\Frame.cs (5)
140NavigationService.NavigationServiceProperty.OverrideMetadata( 208NavigationService IDownloader.Downloader 542public NavigationService NavigationService 1350NavigationService parentNS = _navigationService.ParentNavigationService; 1435private NavigationService _navigationService;
src\Framework\System\Windows\Controls\Page.cs (2)
446public NavigationService NavigationService 450return NavigationService.GetNavigationService(this);
src\Framework\System\Windows\Controls\PasswordBox.cs (4)
74NavigationService.NavigationServiceProperty.OverrideMetadata(typeof(PasswordBox), new FrameworkPropertyMetadata(new PropertyChangedCallback(OnParentNavigationServiceChanged))); 1151NavigationService navService = NavigationService.GetNavigationService(o); 1353private NavigationService _navigationService;
src\Framework\System\Windows\Documents\FixedDocument.cs (5)
70NavigationService.NavigationServiceProperty.OverrideMetadata( 295internal NavigationService NavigationService 297get { return (NavigationService) GetValue(NavigationService.NavigationServiceProperty); } 298set { SetValue(NavigationService.NavigationServiceProperty, value); }
src\Framework\System\Windows\Documents\FixedHyperlink.cs (6)
59NavigationService oldService = (NavigationService) e.OldValue; 60NavigationService newService = (NavigationService) e.NewValue; 81NavigationService ns = sender as NavigationService;
src\Framework\System\Windows\Navigation\JournalEntry.cs (1)
69public abstract void Replay(NavigationService navigationService, NavigationMode mode);
src\Framework\System\Windows\Navigation\NavigationService.cs (25)
704((NavigationService)ChildNavigationServices[i]).InvalidateJournalNavigationScope(); 710NavigationService oldParent = _parentNavigationService; 711NavigationService newParent = ((DependencyObject)INavigatorHost).GetValue(NavigationServiceProperty) as NavigationService; 730internal void AddChild(NavigationService ncChild) 764internal void RemoveChild(NavigationService ncChild) 801internal NavigationService FindTarget(Guid navigationServiceId) 806NavigationService result = null; 807foreach (NavigationService ns in ChildNavigationServices) 837foreach (NavigationService xcChild in ChildNavigationServices) 1413NavigationService rootNavigationService = null; 1474typeof(NavigationService), 1475typeof(NavigationService), 1477(NavigationService)null, 1485public static NavigationService GetNavigationService(DependencyObject dependencyObject) 1492return dependencyObject.GetValue(NavigationServiceProperty) as NavigationService; 2102((NavigationService)_childNavigationServices[i]).DoStopLoading(true, succeed/*fireEvent: we only fire when succeed*/); 2113((NavigationService)_childNavigationServices[i]).DoStopLoading(true, false/*fireEvents*/); 2716NavigationService ncParent = this.ParentNavigationService; 3709internal NavigationService ParentNavigationService 3902foreach (NavigationService ns in ChildNavigationServices) 3925NavigationService ns = this; 4386private NavigationService _parentNavigationService; 4668internal NavigateQueueItem(Uri source, object content, NavigationMode mode, Object navState, NavigationService nc) 4743NavigationService _nc;
src\Framework\System\Windows\Navigation\NavigationWindow.cs (4)
267NavigationService IDownloader.Downloader 542public NavigationService NavigationService 956NavigationService IJournalNavigationScopeHost.NavigationService 1153private NavigationService _navigationService;