FileSystemRepositoryManagerDispose Method (Boolean) |
When overridden in a derived class, releases the unmanaged resources used by the
FileSystemRepositoryManager, and optionally releases the managed resources.
Namespace: CMS.ContinuousIntegrationAssembly: CMS.ContinuousIntegration (in CMS.ContinuousIntegration.dll) Version: 12.0.0
Syntax protected virtual void Dispose(
bool disposing
)
Parameters
- disposing
- Type: SystemBoolean
True to release both managed and unmanaged resources; false to release only unmanaged resources.
Remarks
The
FileSystemRepositoryManager uses only managed resources. If unmanaged resources are used in inherited class, make sure its destructor contains call to
Dispose(false)
(i.e. this class does not have any destructor implemented).
See Also