Control.Dispose 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
서버 컨트롤이 메모리에서 해제되기 전에 해당 서버 컨트롤에서 최종 정리 작업을 수행하도록 합니다.
public:
virtual void Dispose();
public virtual void Dispose ();
abstract member Dispose : unit -> unit
override this.Dispose : unit -> unit
Public Overridable Sub Dispose ()
구현
예제
다음 코드 예제를 재정의 Dispose 하는 메서드와 연결 된 개체를 닫 HtmlTextWriter 고 라는 컨트롤myButton
에 메서드를 Button 호출 Dispose 합니다.
Exception 이 버전의 Dispose 메서드를 호출할 때 가 throw되면 컨트롤은 현재 HttpResponse 개체에 메시지를 씁니다.
public override void Dispose()
{
try
{
Context.Response.Write("Disposing " + ToString());
// Perform resource cleanup.
myTextWriter.Close();
myButton.Dispose();
}
catch(Exception myException)
{
Context.Response.Write("Exception occurred: "+myException.Message);
}
}
Public Overrides Sub Dispose()
Try
Context.Response.Write("Disposing " & ToString())
' Perform resource cleanup.
myTextWriter.Close()
myButton.Dispose()
Catch myException As Exception
Context.Response.Write("Exception occurred: " & myException.Message)
End Try
End Sub
설명
Dispose 사용을 마치면 Control를 호출합니다. Dispose 메서드를 사용하면 Control를 사용할 수 없게 됩니다. 이 메서드를 호출한 후 사용 중인 메모리를 가비지 수집을 통해 회수할 수 있도록 컨트롤에 대한 모든 참조를 해제해야 합니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET