Microsoft.VisualStudio.Project.NodeProperties.GetProperty C# (CSharp) Method

GetProperty() protected method

protected GetProperty ( string name, string def ) : string
name string
def string
return string
        protected string GetProperty(string name, string def)
        {
            string a = this.Node.ItemNode.GetMetadata(name);
            return (a == null) ? def : a;
        }