26 references to CommonConfigurationStrings
System (26)
net\System\Net\Configuration\IdnElement.cs (2)
32
[ConfigurationProperty(
CommonConfigurationStrings
.Enabled, DefaultValue = EnabledDefaultValue)]
42
new ConfigurationProperty(
CommonConfigurationStrings
.Enabled, typeof(UriIdnScope),
net\System\Net\Configuration\IriParsingElement.cs (2)
27
[ConfigurationProperty(
CommonConfigurationStrings
.Enabled, DefaultValue = EnabledDefaultValue)]
37
new ConfigurationProperty(
CommonConfigurationStrings
.Enabled, typeof(bool), EnabledDefaultValue,
net\System\Net\Configuration\SchemeSettingElement.cs (4)
14
name = new ConfigurationProperty(
CommonConfigurationStrings
.SchemeName, typeof(string), null,
17
genericUriParserOptions = new ConfigurationProperty(
CommonConfigurationStrings
.GenericUriParserOptions,
26
[ConfigurationProperty(
CommonConfigurationStrings
.SchemeName,
33
[ConfigurationProperty(
CommonConfigurationStrings
.GenericUriParserOptions,
net\System\Net\Configuration\UriSection.cs (7)
26
private static readonly ConfigurationProperty idn = new ConfigurationProperty(
CommonConfigurationStrings
.Idn,
30
CommonConfigurationStrings
.IriParsing, typeof(IriParsingElement), null, ConfigurationPropertyOptions.None);
33
new ConfigurationProperty(
CommonConfigurationStrings
.SchemeSettings,
44
[ConfigurationProperty(
CommonConfigurationStrings
.Idn)]
51
[ConfigurationProperty(
CommonConfigurationStrings
.IriParsing)]
59
[ConfigurationProperty(
CommonConfigurationStrings
.SchemeSettings)]
183
CommonConfigurationStrings
.UriSectionName) as UriSection;
net\System\Net\Configuration\UriSectionReader.cs (11)
103
if (IsEndElement(
CommonConfigurationStrings
.UriSectionName))
115
if (AreEqual(currentElementName,
CommonConfigurationStrings
.IriParsing))
122
else if (AreEqual(currentElementName,
CommonConfigurationStrings
.Idn))
129
else if (AreEqual(currentElementName,
CommonConfigurationStrings
.SchemeSettings))
147
string attributeValue = reader.GetAttribute(
CommonConfigurationStrings
.Enabled);
163
string attributeValue = reader.GetAttribute(
CommonConfigurationStrings
.Enabled);
180
if (IsEndElement(
CommonConfigurationStrings
.SchemeSettings))
227
string schemeValue = reader.GetAttribute(
CommonConfigurationStrings
.SchemeName);
229
CommonConfigurationStrings
.GenericUriParserOptions);
255
string scheme = reader.GetAttribute(
CommonConfigurationStrings
.SchemeName);
300
if (!reader.ReadToFollowing(
CommonConfigurationStrings
.UriSectionName))