방법: 페이지 로드 중지

이 예제에서는 StopLoading 메서드를 호출하여 다운로드를 마치기 전에 콘텐츠에 대한 탐색을 중지하는 방법을 보여 줍니다.

예제

StopLoading은 요청한 콘텐츠의 다운로드를 중지하며 NavigationStopped 이벤트가 발생되게 합니다.

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