System.Xml.XmlDictionaryReaderQuotas
namespace System.Xml
{
public sealed class XmlDictionaryReaderQuotas
{
public static XmlDictionaryReaderQuotas Max { get; }
public int MaxArrayLength { get; set; }
public int MaxBytesPerRead { get; set; }
public int MaxDepth { get; set; }
public int MaxNameTableCharCount { get; set; }
public int MaxStringContentLength { get; set; }
public XmlDictionaryReaderQuotaTypes ModifiedQuotas { get; }
public XmlDictionaryReaderQuotas();
public void CopyTo(XmlDictionaryReaderQuotas quotas);
}
}