Microsoft.VisualStudio.Project.AssemblyReferenceNode.CanShowDefaultIcon C# (CSharp) Méthode

CanShowDefaultIcon() protected méthode

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

            return true;
        }