4 public sealed
class UriSection : ConfigurationSection
6 private static readonly ConfigurationPropertyCollection properties;
8 private static readonly ConfigurationProperty idn;
10 private static readonly ConfigurationProperty iriParsing;
12 private static readonly ConfigurationProperty schemeSettings;
16 [ConfigurationProperty(
"idn")]
27 [ConfigurationProperty(
"iriParsing")]
38 [ConfigurationProperty(
"schemeSettings")]
47 protected internal override ConfigurationPropertyCollection Properties
57 properties =
new ConfigurationPropertyCollection();
58 idn =
new ConfigurationProperty(
"idn", typeof(IdnElement),
null, ConfigurationPropertyOptions.None);
59 iriParsing =
new ConfigurationProperty(
"iriParsing", typeof(IriParsingElement),
null, ConfigurationPropertyOptions.None);
60 schemeSettings =
new ConfigurationProperty(
"schemeSettings", typeof(SchemeSettingElementCollection),
null, ConfigurationPropertyOptions.None);
62 properties.Add(iriParsing);
63 properties.Add(schemeSettings);
IriParsingElement IriParsing
Gets an T:System.Configuration.IriParsingElement object that contains the configuration setting for I...
IdnElement Idn
Gets an T:System.Configuration.IdnElement object that contains the configuration setting for Internat...
Provides the configuration setting for International Resource Identifier (IRI) processing in the T:Sy...
Represents the Uri section within a configuration file.
SchemeSettingElementCollection SchemeSettings
Gets a T:System.Configuration.SchemeSettingElementCollection object that contains the configuration s...
Provides the configuration setting for International Domain Name (IDN) processing in the T:System....
Represents a collection of T:System.Configuration.SchemeSettingElement objects.