ProgressBarDispose(Boolean) Method
Releases the unmanaged resources used by
BeeMobile.ProgressBar and its child controls
and optionally releases the managed resources.
Namespace: BeeMobile.ProgressBarAssembly: BeeMobile.ProgressBar.NET48 (in BeeMobile.ProgressBar.NET48.dll) Version: 4.8.1.0
protected override void Dispose(
bool disposing
)
Protected Overrides Sub Dispose (
disposing As Boolean
)
Parameters
- disposing Boolean
- true to release both managed and unmanaged resources; false to release
only unmanaged resources.
This method is called by the public Dispose(Boolean) method and the Finalize() method.
Dispose(Boolean) invokes the protected Dispose(Boolean) method with the disposing parameter
set to true. Finalize invokes Dispose(Boolean) with disposing set to false. When the disposing
parameter is true, this method releases all resources held by any managed objects that ProgressBar
references. This method invokes the Dispose() method of each referenced object.
Notes to Inheritors Dispose can be called multiple times by other objects.
When overriding Dispose(Boolean) be careful not to reference objects that have been previously
disposed of in an earlier call to Dispose(Boolean).