Microsoft.VisualStudio.Project.AssemblyReferenceNode.CanShowDefaultIcon C# (CSharp) Method

CanShowDefaultIcon() protected method

Determines if this is node a valid node for painting the default reference icon.
protected CanShowDefaultIcon ( ) : bool
return bool
        protected override bool CanShowDefaultIcon()
        {
            if(String.IsNullOrEmpty(this.assemblyPath) || !File.Exists(this.assemblyPath))
            {
                return false;
            }

            return true;
        }