Microsoft.VisualStudio.Project.ImageHandler.Dispose C# (CSharp) Method

Dispose() protected method

protected Dispose ( bool disposing ) : void
disposing bool
return void
        protected virtual void Dispose(bool disposing)
        {
            if(!this.isDisposed)
            {
                if (disposing)
                {
                    lock(Mutex)
                    {
                        this.imageList.Dispose();
                    }
                }

                this.isDisposed = true;
            }
        }

Same methods

ImageHandler::Dispose ( ) : void