123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- using System;
- using MediaBrowser.Model.IO;
- namespace IsoMounter
- {
- internal class LinuxMount : IIsoMount
- {
- #region Private Fields
- private readonly LinuxIsoManager linuxIsoManager;
- #endregion
- #region Constructor(s)
- internal LinuxMount(LinuxIsoManager isoManager, string isoPath, string mountFolder)
- {
- linuxIsoManager = isoManager;
- IsoPath = isoPath;
- MountedPath = mountFolder;
- }
- #endregion
- #region Interface Implementation for IDisposable
- // Flag: Has Dispose already been called?
- private bool disposed = false;
- public void Dispose()
- {
- // Dispose of unmanaged resources.
- Dispose(true);
- // Suppress finalization.
- GC.SuppressFinalize(this);
- }
- protected virtual void Dispose(bool disposing)
- {
- if (disposed) {
- return;
- }
-
- if (disposing) {
- //
- // Free managed objects here.
- //
- linuxIsoManager.OnUnmount(this);
- }
- //
- // Free any unmanaged objects here.
- //
- disposed = true;
- }
- #endregion
- #region Interface Implementation for IIsoMount
- public string IsoPath { get; private set; }
- public string MountedPath { get; private set; }
- #endregion
- }
- }
|