X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem.Configuration%2FSystem.Configuration%2FConfiguration.cs;h=7e78b1b325f1946ab1bcbb8e95c0ee43ffa7681f;hb=44f06623bdc60d139642eea69000e73561b4c0ad;hp=fb48cc9664f27b743154806f992f342e7e9a8f35;hpb=0e4acb2215d2bec1de92ef7871b2e9038d1ef037;p=mono.git diff --git a/mcs/class/System.Configuration/System.Configuration/Configuration.cs b/mcs/class/System.Configuration/System.Configuration/Configuration.cs index fb48cc9664f..7e78b1b325f 100644 --- a/mcs/class/System.Configuration/System.Configuration/Configuration.cs +++ b/mcs/class/System.Configuration/System.Configuration/Configuration.cs @@ -251,9 +251,9 @@ namespace System.Configuration { get { return RootSectionGroup.Sections; } } - public ConfigurationSection GetSection (string path) + public ConfigurationSection GetSection (string sectionName) { - string[] parts = path.Split ('/'); + string[] parts = sectionName.Split ('/'); if (parts.Length == 1) return Sections [parts[0]]; @@ -267,9 +267,9 @@ namespace System.Configuration { return null; } - public ConfigurationSectionGroup GetSectionGroup (string path) + public ConfigurationSectionGroup GetSectionGroup (string sectionGroupName) { - string[] parts = path.Split ('/'); + string[] parts = sectionGroupName.Split ('/'); ConfigurationSectionGroup group = SectionGroups [parts[0]]; for (int n=1; group != null && n