6992685b86
Former-commit-id: 0a113cb3a6feb7873f632839b1307cc6033cd595
20 lines
556 B
C#
20 lines
556 B
C#
namespace System.Net.Configuration {
|
|
sealed class SettingsSectionInternal
|
|
{
|
|
static readonly SettingsSectionInternal instance = new SettingsSectionInternal ();
|
|
|
|
internal static SettingsSectionInternal Section {
|
|
get {
|
|
return instance;
|
|
}
|
|
}
|
|
|
|
#if !MOBILE
|
|
internal UnicodeEncodingConformance WebUtilityUnicodeEncodingConformance = UnicodeEncodingConformance.Auto;
|
|
internal UnicodeDecodingConformance WebUtilityUnicodeDecodingConformance = UnicodeDecodingConformance.Auto;
|
|
#endif
|
|
|
|
internal bool HttpListenerUnescapeRequestUrl = true;
|
|
}
|
|
}
|