5 instantiations of NavigationEventArgs
PresentationFramework (5)
MS\Internal\Controls\WebBrowserEvent.cs (2)
208
NavigationEventArgs e = new
NavigationEventArgs
(source, null, null, null, null, true);
236
NavigationEventArgs e = new
NavigationEventArgs
(source, null, null, null, null, true);
System\Windows\Navigation\NavigationService.cs (3)
2228
NavigationEventArgs e = new
NavigationEventArgs
(CurrentSource, Content, extraData, _webResponse, INavigatorHost, IsNavigationInitiator);
2418
NavigationEventArgs e = new
NavigationEventArgs
(CurrentSource, Content, extraData, _webResponse, INavigatorHost, isNavInitiator);
2577
NavigationEventArgs e = new
NavigationEventArgs
(Source, Content, extraData, null, INavigatorHost, IsNavigationInitiator);
16 references to NavigationEventArgs
PresentationFramework (16)
MS\Internal\Controls\WebBrowserEvent.cs (2)
208
NavigationEventArgs
e = new NavigationEventArgs(source, null, null, null, null, true);
236
NavigationEventArgs
e = new NavigationEventArgs(source, null, null, null, null, true);
System\Windows\Application.cs (6)
1403
protected virtual void OnNavigated(
NavigationEventArgs
e)
1464
protected virtual void OnLoadCompleted(
NavigationEventArgs
e)
1485
protected virtual void OnNavigationStopped(
NavigationEventArgs
e)
1801
internal void FireNavigated(
NavigationEventArgs
e)
1819
internal void FireLoadCompleted(
NavigationEventArgs
e)
1826
internal void FireNavigationStopped(
NavigationEventArgs
e)
System\Windows\Controls\WebBrowser.cs (2)
513
internal void OnNavigated(
NavigationEventArgs
e)
523
internal void OnLoadCompleted(
NavigationEventArgs
e)
System\Windows\Navigation\NavigationService.cs (6)
2228
NavigationEventArgs
e = new NavigationEventArgs(CurrentSource, Content, extraData, _webResponse, INavigatorHost, IsNavigationInitiator);
2418
NavigationEventArgs
e = new NavigationEventArgs(CurrentSource, Content, extraData, _webResponse, INavigatorHost, isNavInitiator);
2577
NavigationEventArgs
e = new NavigationEventArgs(Source, Content, extraData, null, INavigatorHost, IsNavigationInitiator);
4161
public delegate void NavigatedEventHandler(Object sender,
NavigationEventArgs
e);
4166
public delegate void LoadCompletedEventHandler(Object sender,
NavigationEventArgs
e);
4171
public delegate void NavigationStoppedEventHandler(Object sender,
NavigationEventArgs
e);