Microsoft.VisualStudio.Project.ProjectNode.UpdateSccStateIcons C# (CSharp) Méthode

UpdateSccStateIcons() protected méthode

Recursevily walks the hierarchy nodes and redraws the state icons
protected UpdateSccStateIcons ( ) : void
Résultat void
        protected internal override void UpdateSccStateIcons()
        {
            if (this.FirstChild == null)
            {
                return;
            }

            for (HierarchyNode n = this.FirstChild; n != null; n = n.NextSibling)
            {
                n.UpdateSccStateIcons();
            }
        }
ProjectNode