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