XmlElementEventArgs.cs 732 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // XmlElementEventArgs.cs:
  3. //
  4. // Author:
  5. // John Donagher ([email protected])
  6. //
  7. // (C) 2002 John Donagher
  8. //
  9. using System.Xml;
  10. using System;
  11. namespace System.Xml.Serialization
  12. {
  13. /// <summary>
  14. /// Summary description for XmlElementEventArgs.
  15. /// </summary>
  16. public class XmlElementEventArgs : EventArgs
  17. {
  18. [MonoTODO]
  19. public XmlElement Element {
  20. get{ throw new NotImplementedException(); }
  21. }
  22. [MonoTODO]
  23. public int LineNumber {
  24. get{ throw new NotImplementedException(); }
  25. }
  26. [MonoTODO]
  27. public int LinePosition {
  28. get{ throw new NotImplementedException(); }
  29. }
  30. [MonoTODO]
  31. public object ObjectBeingDeserialized {
  32. get{ throw new NotImplementedException(); }
  33. }
  34. }
  35. }