Image.Dispose 方法
定义
重载
| Dispose() |
释放此 Image 使用的所有资源。Releases all resources used by this Image. |
| Dispose(Boolean) |
释放由 Image 占用的非托管资源,还可以另外再释放托管资源。Releases the unmanaged resources used by the Image and optionally releases the managed resources. |
注解
备注
每次释放对 Dispose 的最后一个引用前,均应调用 Image。Always call Dispose before you release your last reference to the Image. 否则,在垃圾回收器调用 Image 对象的 Finalize 方法之前,该对象正在使用的资源不会被释放。Otherwise, the resources it is using will not be freed until the garbage collector calls the Image object's Finalize method.
Dispose()
public:
virtual void Dispose();
public void Dispose ();
abstract member Dispose : unit -> unit
override this.Dispose : unit -> unit
Public Sub Dispose ()
实现
注解
通过调用 Dispose 方法,可以将此使用的资源重新 Image 分配给其他目的。Calling the Dispose method allows the resources used by this Image to be reallocated for other purposes.
在完成使用 Dispose 后,应调用 Image。Call Dispose when you are finished using the Image. Dispose 方法使 Image 处于不可用状态。The Dispose method leaves the Image in an unusable state. 调用后 Dispose ,必须释放对的所有引用, Image 以便垃圾回收器能够回收占用的内存 Image 。After calling Dispose, you must release all references to the Image so the garbage collector can reclaim the memory that the Image was occupying. 有关详细信息,请参阅 清理非托管资源 和 实现 Dispose 方法。For more information, see Cleaning Up Unmanaged Resources and Implementing a Dispose Method.
备注
每次释放对 Dispose 的最后一个引用前,均应调用 Image。Always call Dispose before you release your last reference to the Image. 否则,在垃圾回收器调用 Image 对象的 Finalize 方法之前,该对象正在使用的资源不会被释放。Otherwise, the resources it is using will not be freed until the garbage collector calls the Image object's Finalize method.
适用于
Dispose(Boolean)
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 release only unmanaged resources.
注解
备注
每次释放对 Dispose 的最后一个引用前,均应调用 Image。Always call Dispose before you release your last reference to the Image. 否则,在垃圾回收器调用 Image 对象的 Finalize 方法之前,该对象正在使用的资源不会被释放。Otherwise, the resources it is using will not be freed until the garbage collector calls the Image object's Finalize method.