5 instantiations of NavigationEventArgs
PresentationFramework (5)
MS\Internal\Controls\WebBrowserEvent.cs (2)
199NavigationEventArgs e = new NavigationEventArgs(source, null, null, null, null, true); 227NavigationEventArgs e = new NavigationEventArgs(source, null, null, null, null, true);
System\Windows\Navigation\NavigationService.cs (3)
2212NavigationEventArgs e = new NavigationEventArgs(CurrentSource, Content, extraData, _webResponse, INavigatorHost, IsNavigationInitiator); 2401NavigationEventArgs e = new NavigationEventArgs(CurrentSource, Content, extraData, _webResponse, INavigatorHost, isNavInitiator); 2560NavigationEventArgs e = new NavigationEventArgs(Source, Content, extraData, null, INavigatorHost, IsNavigationInitiator);
16 references to NavigationEventArgs
PresentationFramework (16)
MS\Internal\Controls\WebBrowserEvent.cs (2)
199NavigationEventArgs e = new NavigationEventArgs(source, null, null, null, null, true); 227NavigationEventArgs e = new NavigationEventArgs(source, null, null, null, null, true);
System\Windows\Application.cs (6)
1380protected virtual void OnNavigated(NavigationEventArgs e) 1441protected virtual void OnLoadCompleted(NavigationEventArgs e) 1462protected virtual void OnNavigationStopped(NavigationEventArgs e) 1782internal void FireNavigated(NavigationEventArgs e) 1800internal void FireLoadCompleted(NavigationEventArgs e) 1807internal void FireNavigationStopped(NavigationEventArgs e)
System\Windows\Controls\WebBrowser.cs (2)
515internal void OnNavigated(NavigationEventArgs e) 525internal void OnLoadCompleted(NavigationEventArgs e)
System\Windows\Navigation\NavigationService.cs (6)
2212NavigationEventArgs e = new NavigationEventArgs(CurrentSource, Content, extraData, _webResponse, INavigatorHost, IsNavigationInitiator); 2401NavigationEventArgs e = new NavigationEventArgs(CurrentSource, Content, extraData, _webResponse, INavigatorHost, isNavInitiator); 2560NavigationEventArgs e = new NavigationEventArgs(Source, Content, extraData, null, INavigatorHost, IsNavigationInitiator); 4144public delegate void NavigatedEventHandler(Object sender, NavigationEventArgs e); 4149public delegate void LoadCompletedEventHandler(Object sender, NavigationEventArgs e); 4154public delegate void NavigationStoppedEventHandler(Object sender, NavigationEventArgs e);