DirectoryEntry.Dispose(Boolean) 方法
定义
释放 DirectoryEntry 使用的资源(内存除外)。Disposes of the resources (other than memory) that are used by the DirectoryEntry.
protected:
override void Dispose(bool disposing);
protected override void Dispose (bool disposing);
override this.Dispose : bool -> unit
Protected Overrides Sub Dispose (disposing As Boolean)
参数
- disposing
- Boolean
若要释放托管资源和非托管资源,则为 true;若仅释放非托管资源,则为 false。true to release both managed and unmanaged resources; false to release only unmanaged resources.
注解
此方法由公共 Dispose 方法和 Finalize 方法调用。This method is called by the public Dispose method and the Finalize method. Dispose 调用受保护的 Dispose 方法,并将 disposing 参数设置为 true 。Dispose invokes the protected Dispose method with the disposing parameter set to true. FinalizeDispose在设置为的情况调用 disposing false 。Finalize invokes Dispose with disposing set to false.
当 disposing 参数为时 true ,此方法将释放该对象引用的任何托管对象所持有的所有资源 DirectoryEntry 。When the disposing parameter is true, this method releases all resources that are held by any managed objects that this DirectoryEntry object references. 此方法将调用每个被引用对象的 Dispose 方法。This method invokes the Dispose method of each referenced object.
有关和方法的详细 Dispose 信息 Finalize ,请参阅 重写 Finalize 方法。For more information about the Dispose and Finalize methods, see Overriding the Finalize Method.