NavigationService.StopLoading Method
Definition
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
שתף איתנו פעולה ב- GitHub
ניתן למצוא את המקור לתוכן זה ב- GitHub, שם ניתן גם ליצור ולסקור בעיות ולמשוך בקשות. לקבלת מידע נוסף, עיין במדריך התורמים שלנו.