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

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

Get Node from ItemID.
public NodeFromItemId ( uint itemId ) : HierarchyNode
itemId uint ItemID for the requested node
Результат HierarchyNode
        public HierarchyNode NodeFromItemId(uint itemId)
        {
            if (VSConstants.VSITEMID_ROOT == itemId)
            {
                return this;
            }
            if (VSConstants.VSITEMID_NIL == itemId)
            {
                return null;
            }
            if (VSConstants.VSITEMID_SELECTION == itemId)
            {
                throw new NotImplementedException();
            }

            return (HierarchyNode) ItemIdMap[itemId];
        }
ProjectNode