Sys.Net.WebRequest remove_completed 메서드
업데이트: 2007년 11월
add_completed 메서드에서 추가한 이벤트 처리기를 제거합니다.
MyWebRequest.remove_completed();
설명
요청과 연결된 실행자는 completed 메서드를 호출하여 이벤트를 발생시킵니다. 연결된 실행자의 작업이 끝나면 이벤트 처리기가 호출됩니다. 실행자 작업은 완료, 중단 또는 시간 초과 상태 중 하나로 끝납니다.
예제
다음 예제에서는 완료 이벤트 처리기를 추가하고 제거하는 방법을 보여 줍니다. 이 코드는 WebRequest 클래스 개요에서 볼 수 있는 전체 예제의 일부입니다.
// This function adds and removes the
// Web request completed event handler.
function WebRequestCompleted()
{
// Instantiate the WebRequest.
var wRequest = new Sys.Net.WebRequest();
// Set the request Url.
wRequest.set_url(getPage);
// Set the web request completed event handler,
// for processing return data.
wRequest.add_completed(OnWebRequestCompleted);
alert("Added Web request completed handler");
// Remove the web request completed event handler.
// Comment the following two lines if you want to
// use the handler.
wRequest.remove_completed(OnWebRequestCompleted);
alert("Removed handler; the Web request return is not processed.");
// Execute the request.
wRequest.invoke();
}