Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

NavigationService.StopLoading Method

Definition

Namespace:
System.Windows.Navigation
Assembly:
PresentationFramework.dll

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Stops further downloading of content for the current navigation request.

public:
 void StopLoading();
public void StopLoading();
member this.StopLoading : unit -> unit
Public Sub StopLoading ()

Examples

The following example demonstrates how to stop loading.

void stopButton_Click(object sender, RoutedEventArgs e)
{
 this.NavigationService.StopLoading();
}
Private Sub stopButton_Click(ByVal sender As Object, ByVal e As RoutedEventArgs)
 Me.NavigationService.StopLoading()
End Sub

Remarks

StopLoading can be called as soon as Navigate returns, and stops navigation that is in progress in child frames.

(Frame).

Calling the StopLoading method raises the NavigationStopped event.

Note

StopLoading must be called on the same thread that initiated the navigation.

Applies to

See also


Feedback

Was this page helpful?