MACTripleDES.Dispose(Boolean) 方法
定义
释放 MACTripleDES 实例使用的资源。Releases the resources used by the MACTripleDES instance.
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
如果该方法是从 Dispose() 实现调用的,则为 true;否则为 false。true if the method is called from an Dispose() implementation; otherwise, false.
注解
此方法由公共 Dispose() 方法和 Finalize 方法调用。This method is called by the public Dispose() method and the Finalize method. Dispose()调用受保护的 Dispose(Boolean) 方法,释放参数设置为 true 。Dispose() invokes the protected Dispose(Boolean) method with the disposing parameter set to true. Finalize 将释放设置为 Dispose,调用 false。Finalize invokes Dispose with disposing set to false.
当 disposing 参数为 true 时,此方法释放该 MACTripleDES 引用的、由任何托管对象持有的全部资源。When the disposing parameter is true, this method releases all resources held by any managed objects that this MACTripleDES references. 此方法将调用每个被引用对象的 Dispose() 方法。This method invokes the Dispose() method of each referenced object.
继承者说明
Dispose 可以由其他对象多次调用。
Dispose can be called multiple times by other objects. 重写时 Dispose(Boolean) ,请注意不要引用先前在调用时已释放的对象 Dispose 。When overriding Dispose(Boolean), be careful not to reference objects that have been previously disposed in an earlier call to Dispose. 有关如何实现的详细信息 Dispose(Boolean) ,请参阅[实现 Dispose 方法](/dotnet/standard/garbage-collection/implementing-dispose)。For more information about how to implement Dispose(Boolean), see [Implementing a Dispose Method](/dotnet/standard/garbage-collection/implementing-dispose).
有关和的详细 Dispose 信息 Finalize ,请参阅清理非托管资源。For more information about Dispose and Finalize, see Cleaning Up Unmanaged Resources.