HttpMessageInvoker.Dispose 메서드
정의
HttpMessageInvoker에서 사용하는 관리되지 않는 리소스를 해제하고 관리되는 리소스를 선택적으로 삭제할 수 있습니다.Releases the unmanaged resources used by the HttpMessageInvoker and optionally disposes of the managed resources.
오버로드
Dispose() |
관리되지 않는 리소스를 해제하고, HttpMessageInvoker에서 사용하는 관리되는 리소스를 삭제합니다.Releases the unmanaged resources and disposes of the managed resources used by the HttpMessageInvoker. |
Dispose(Boolean) |
HttpMessageInvoker에서 사용하는 관리되지 않는 리소스를 해제하고 관리되는 리소스를 선택적으로 삭제할 수 있습니다.Releases the unmanaged resources used by the HttpMessageInvoker and optionally disposes of the managed resources. |
Dispose()
관리되지 않는 리소스를 해제하고, HttpMessageInvoker에서 사용하는 관리되는 리소스를 삭제합니다.Releases the unmanaged resources and disposes of the managed resources used by the HttpMessageInvoker.
public:
virtual void Dispose();
public void Dispose ();
abstract member Dispose : unit -> unit
override this.Dispose : unit -> unit
Public Sub Dispose ()
구현
적용 대상
Dispose(Boolean)
HttpMessageInvoker에서 사용하는 관리되지 않는 리소스를 해제하고 관리되는 리소스를 선택적으로 삭제할 수 있습니다.Releases the unmanaged resources used by the HttpMessageInvoker and optionally disposes of the managed resources.
protected:
virtual void Dispose(bool disposing);
protected virtual void Dispose (bool disposing);
abstract member Dispose : bool -> unit
override this.Dispose : bool -> unit
Protected Overridable Sub Dispose (disposing As Boolean)
매개 변수
- disposing
- Boolean
관리되는 리소스와 관리되지 않는 리소스를 모두 해제하려면 true
, 관리되지 않는 리소스만 해제하려면 false
입니다.true
to release both managed and unmanaged resources; false
to releases only unmanaged resources.