2 writes to Source
PresentationFramework (2)
src\Framework\System\Windows\Navigation\JournalEntry.cs (1)
114Source = uri;
src\Framework\System\Windows\Navigation\NavigationService.cs (1)
3500journalEntry.Source = _currentCleanSource; // This could be #fragment.
12 references to Source
PresentationFramework (12)
src\Framework\MS\Internal\AppModel\Journaling.cs (4)
183Invariant.Assert(this.Source != null, "Can't journal by Uri without a Uri."); 241return navigator.Navigate(this.KeepAliveRoot, new NavigateInfo(Source, navMode, this)); 481return navigator.Navigate(pf, new NavigateInfo(this.Source, navMode, this)); 602return navigator.Navigate(pageFunction, new NavigateInfo(this.Source, navMode, this));
src\Framework\System\Windows\Navigation\JournalEntry.cs (3)
344if (this.Source != null) 346return navigator.Navigate(Source, new NavigateInfo(Source, navMode, this));
src\Framework\System\Windows\Navigation\NavigationService.cs (5)
4219new NavigateInfo(parentEntry.Source, NavigationMode.Back, parentEntry) : 4220new NavigateInfo(parentEntry.Source, NavigationMode.New); 4230new PageFunctionReturnInfo(finishingChildPageFunction, parentEntry.Source, 4232new PageFunctionReturnInfo(finishingChildPageFunction, parentEntry.Source, 4236this.Navigate(parentEntry.Source, pfRetInfo);