6 private static readonly ConfigurationPropertyCollection properties;
8 private static readonly ConfigurationProperty name;
10 private static readonly ConfigurationProperty genericUriParserOptions;
14 [ConfigurationProperty(
"name", DefaultValue =
null, IsRequired =
true, IsKey =
true)]
19 return (
string)base[name];
25 [ConfigurationProperty(
"genericUriParserOptions", DefaultValue = ConfigurationPropertyOptions.None, IsRequired =
true)]
34 protected internal override ConfigurationPropertyCollection Properties
42 static SchemeSettingElement()
44 name =
new ConfigurationProperty(
"name", typeof(
string),
null, ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey);
46 properties =
new ConfigurationPropertyCollection();
48 properties.Add(genericUriParserOptions);
GenericUriParserOptions
Specifies options for a T:System.UriParser.
Represents an element in a T:System.Configuration.SchemeSettingElementCollection class.
string Name
Gets the value of the Name entry from a T:System.Configuration.SchemeSettingElement instance.
GenericUriParserOptions GenericUriParserOptions
Gets the value of the GenericUriParserOptions entry from a T:System.Configuration....