Microsoft.VisualStudio.Project.AssemblyReferenceNode.CanShowDefaultIcon C# (CSharp) Метод

CanShowDefaultIcon() защищенный Метод

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

            return true;
        }