5 instantiations of NavigationEventArgs
PresentationFramework (5)
MS\Internal\Controls\WebBrowserEvent.cs (2)
198NavigationEventArgs e = new NavigationEventArgs(source, null, null, null, null, true); 226NavigationEventArgs e = new NavigationEventArgs(source, null, null, null, null, true);
System\Windows\Navigation\NavigationService.cs (3)
2172NavigationEventArgs e = new NavigationEventArgs(CurrentSource, Content, extraData, _webResponse, INavigatorHost, IsNavigationInitiator); 2361NavigationEventArgs e = new NavigationEventArgs(CurrentSource, Content, extraData, _webResponse, INavigatorHost, isNavInitiator); 2520NavigationEventArgs e = new NavigationEventArgs(Source, Content, extraData, null, INavigatorHost, IsNavigationInitiator);
16 references to NavigationEventArgs
PresentationFramework (16)
MS\Internal\Controls\WebBrowserEvent.cs (2)
198NavigationEventArgs e = new NavigationEventArgs(source, null, null, null, null, true); 226NavigationEventArgs e = new NavigationEventArgs(source, null, null, null, null, true);
System\Windows\Application.cs (6)
1376protected virtual void OnNavigated(NavigationEventArgs e) 1437protected virtual void OnLoadCompleted(NavigationEventArgs e) 1458protected virtual void OnNavigationStopped(NavigationEventArgs e) 1772internal void FireNavigated(NavigationEventArgs e) 1790internal void FireLoadCompleted(NavigationEventArgs e) 1797internal void FireNavigationStopped(NavigationEventArgs e)
System\Windows\Controls\WebBrowser.cs (2)
514internal void OnNavigated(NavigationEventArgs e) 524internal void OnLoadCompleted(NavigationEventArgs e)
System\Windows\Navigation\NavigationService.cs (6)
2172NavigationEventArgs e = new NavigationEventArgs(CurrentSource, Content, extraData, _webResponse, INavigatorHost, IsNavigationInitiator); 2361NavigationEventArgs e = new NavigationEventArgs(CurrentSource, Content, extraData, _webResponse, INavigatorHost, isNavInitiator); 2520NavigationEventArgs e = new NavigationEventArgs(Source, Content, extraData, null, INavigatorHost, IsNavigationInitiator); 4098public delegate void NavigatedEventHandler(Object sender, NavigationEventArgs e); 4103public delegate void LoadCompletedEventHandler(Object sender, NavigationEventArgs e); 4108public delegate void NavigationStoppedEventHandler(Object sender, NavigationEventArgs e);