VsTeXProject.VisualStudio.Project.ProjectNode.Remove C# (CSharp) Метод

Remove() публичный Метод

Removes items from the hierarchy.
public Remove ( bool removeFromStorage ) : void
removeFromStorage bool
Результат void
        public override void Remove(bool removeFromStorage)
        {
            // the project will not be deleted from disk, just removed      
            if (removeFromStorage)
            {
                return;
            }

            // Remove the entire project from the solution
            var solution = Site.GetService(typeof (SVsSolution)) as IVsSolution;
            uint iOption = 1; // SLNSAVEOPT_PromptSave
            ErrorHandler.ThrowOnFailure(solution.CloseSolutionElement(iOption, InteropSafeIVsHierarchy, 0));
        }
ProjectNode