5 instantiations of NavigationEventArgs
PresentationFramework (5)
src\Framework\MS\Internal\Controls\WebBrowserEvent.cs (2)
272NavigationEventArgs e = new NavigationEventArgs(source, null, null, null, null, true); 301NavigationEventArgs e = new NavigationEventArgs(source, null, null, null, null, true);
src\Framework\System\Windows\Navigation\NavigationService.cs (3)
2409NavigationEventArgs e = new NavigationEventArgs(CurrentSource, Content, extraData, _webResponse, INavigatorHost, IsNavigationInitiator); 2610NavigationEventArgs e = new NavigationEventArgs(CurrentSource, Content, extraData, _webResponse, INavigatorHost, isNavInitiator); 2769NavigationEventArgs e = new NavigationEventArgs(Source, Content, extraData, null, INavigatorHost, IsNavigationInitiator);
17 references to NavigationEventArgs
PresentationFramework (17)
src\Framework\MS\Internal\AppModel\XappLauncher.cs (1)
101void XappLauncherApp_Navigated(object sender, NavigationEventArgs e)
src\Framework\MS\Internal\Controls\WebBrowserEvent.cs (2)
272NavigationEventArgs e = new NavigationEventArgs(source, null, null, null, null, true); 301NavigationEventArgs e = new NavigationEventArgs(source, null, null, null, null, true);
src\Framework\System\Windows\Application.cs (6)
1465protected virtual void OnNavigated(NavigationEventArgs e) 1526protected virtual void OnLoadCompleted(NavigationEventArgs e) 1547protected virtual void OnNavigationStopped(NavigationEventArgs e) 1905internal void FireNavigated(NavigationEventArgs e) 1923internal void FireLoadCompleted(NavigationEventArgs e) 1930internal void FireNavigationStopped(NavigationEventArgs e)
src\Framework\System\Windows\Controls\WebBrowser.cs (2)
693internal void OnNavigated(NavigationEventArgs e) 703internal void OnLoadCompleted(NavigationEventArgs e)
src\Framework\System\Windows\Navigation\NavigationService.cs (6)
2409NavigationEventArgs e = new NavigationEventArgs(CurrentSource, Content, extraData, _webResponse, INavigatorHost, IsNavigationInitiator); 2610NavigationEventArgs e = new NavigationEventArgs(CurrentSource, Content, extraData, _webResponse, INavigatorHost, isNavInitiator); 2769NavigationEventArgs e = new NavigationEventArgs(Source, Content, extraData, null, INavigatorHost, IsNavigationInitiator); 4446public delegate void NavigatedEventHandler(Object sender, NavigationEventArgs e); 4451public delegate void LoadCompletedEventHandler(Object sender, NavigationEventArgs e); 4456public delegate void NavigationStoppedEventHandler(Object sender, NavigationEventArgs e);