| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- namespace System.Xml
- {
- public class XmlDictionaryReaderQuotas
- {
- public XmlDictionaryReaderQuotas ()
- {
- }
- [MonoTODO]
- public const int DefaultMaxArrayLength = int.MaxValue;
- [MonoTODO]
- public const int DefaultMaxBytesPerRead = int.MaxValue;
- [MonoTODO]
- public const int DefaultMaxDepth = int.MaxValue;
- [MonoTODO]
- public const int DefaultMaxNameTableCharCount = int.MaxValue;
- [MonoTODO]
- public const int DefaultMaxStringContentLength = int.MaxValue;
- public static XmlDictionaryReaderQuotas Default {
- get { throw new NotImplementedException (); }
- }
- public static XmlDictionaryReaderQuotas Max {
- get { throw new NotImplementedException (); }
- }
- public int MaxArrayLength {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- public int MaxBytesPerRead {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- public int MaxDepth {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- public int MaxNameTableCharCount {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- public int MaxStringContentLength {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- public void CopyTo (XmlDictionaryReaderQuotas quota)
- {
- throw new NotImplementedException ();
- }
- }
- }
|