Microsoft.VisualStudio.Project.ProjectNode.CanDeleteItem C# (CSharp) 메소드

CanDeleteItem() 보호된 메소드

Get the boolean value for the deletion of a project item
protected CanDeleteItem ( __VSDELETEITEMOPERATION deleteOperation ) : bool
deleteOperation __VSDELETEITEMOPERATION A flag that specifies the type of delete operation (delete from storage or remove from project)
리턴 bool
        protected override bool CanDeleteItem(__VSDELETEITEMOPERATION deleteOperation)
        {
            if (deleteOperation == __VSDELETEITEMOPERATION.DELITEMOP_RemoveFromProject)
            {
                return true;
            }
            return false;
        }
ProjectNode