NavigationService.StopLoading Method

Definition

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