CmisSync.Lib.Producer.Watcher.MacWatcher.Dispose C# (CSharp) Метод

Dispose() защищенный Метод

Dispose the FsStream.
protected Dispose ( bool disposing ) : void
disposing bool If set to true disposing.
Результат void
        protected void Dispose(bool disposing) {
            if (!disposed) {
                if (disposing) {
                    // Dispose of any managed resources of the derived class here.
                    EnableEvents = false;
                    FsStream.Invalidate();

                    StopRunLoop = true;
                    RunLoopThread.Join();
                    disposed = true;
                }
                // Dispose of any unmanaged resources of the derived class here.
            }
        }

Same methods

MacWatcher::Dispose ( ) : void