2
0

XmlDictionaryReaderQuotas.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. namespace System.Xml
  2. {
  3. public class XmlDictionaryReaderQuotas
  4. {
  5. public XmlDictionaryReaderQuotas ()
  6. {
  7. }
  8. [MonoTODO]
  9. public const int DefaultMaxArrayLength = int.MaxValue;
  10. [MonoTODO]
  11. public const int DefaultMaxBytesPerRead = int.MaxValue;
  12. [MonoTODO]
  13. public const int DefaultMaxDepth = int.MaxValue;
  14. [MonoTODO]
  15. public const int DefaultMaxNameTableCharCount = int.MaxValue;
  16. [MonoTODO]
  17. public const int DefaultMaxStringContentLength = int.MaxValue;
  18. public static XmlDictionaryReaderQuotas Default {
  19. get { throw new NotImplementedException (); }
  20. }
  21. public static XmlDictionaryReaderQuotas Max {
  22. get { throw new NotImplementedException (); }
  23. }
  24. public int MaxArrayLength {
  25. get { throw new NotImplementedException (); }
  26. set { throw new NotImplementedException (); }
  27. }
  28. public int MaxBytesPerRead {
  29. get { throw new NotImplementedException (); }
  30. set { throw new NotImplementedException (); }
  31. }
  32. public int MaxDepth {
  33. get { throw new NotImplementedException (); }
  34. set { throw new NotImplementedException (); }
  35. }
  36. public int MaxNameTableCharCount {
  37. get { throw new NotImplementedException (); }
  38. set { throw new NotImplementedException (); }
  39. }
  40. public int MaxStringContentLength {
  41. get { throw new NotImplementedException (); }
  42. set { throw new NotImplementedException (); }
  43. }
  44. public void CopyTo (XmlDictionaryReaderQuotas quota)
  45. {
  46. throw new NotImplementedException ();
  47. }
  48. }
  49. }