Microsoft.Web.Administration.ConfigurationSection.GetElementByPath C# (CSharp) Method

GetElementByPath() private method

private GetElementByPath ( string path ) : ConfigurationElement
path string
return ConfigurationElement
        internal override ConfigurationElement GetElementByPath(string path)
        {
            return Schema?.CollectionSchema == null ? base.GetElementByPath(path) : Root.GetElementByPath(path);
        }
    }