2016-02-22 11:00:01 -05:00
|
|
|
namespace System
|
|
|
|
{
|
2016-11-10 13:04:39 +00:00
|
|
|
static class LocalAppContextSwitches {
|
|
|
|
public static readonly bool IgnoreEmptyKeySequences = false;
|
|
|
|
public static readonly bool DontThrowOnInvalidSurrogatePairs = false;
|
|
|
|
public static readonly bool IgnoreKindInUtcTimeSerialization = false;
|
2018-01-24 17:04:36 +00:00
|
|
|
public static readonly bool EnableTimeSpanSerialization = false;
|
2018-10-09 08:20:59 +00:00
|
|
|
public static readonly bool LimitXPathComplexity = false;
|
|
|
|
public static readonly bool AllowDefaultResolver = false;
|
2016-11-10 13:04:39 +00:00
|
|
|
}
|
2016-02-22 11:00:01 -05:00
|
|
|
}
|