XmlNodeEventArgs.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. //
  2. // XmlNodeEventArgs.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 XmlNodeEventArgs.
  15. /// </summary>
  16. public class XmlNodeEventArgs : EventArgs
  17. {
  18. [MonoTODO]
  19. public int LineNumber {
  20. get {
  21. throw new NotImplementedException();
  22. }
  23. }
  24. [MonoTODO]
  25. public int LinePosition {
  26. get {
  27. throw new NotImplementedException();
  28. }
  29. }
  30. [MonoTODO]
  31. public string LocalName {
  32. get {
  33. throw new NotImplementedException();
  34. }
  35. }
  36. [MonoTODO]
  37. public string Name {
  38. get {
  39. throw new NotImplementedException();
  40. }
  41. }
  42. [MonoTODO]
  43. public string NamespaceURI {
  44. get {
  45. throw new NotImplementedException();
  46. }
  47. }
  48. [MonoTODO]
  49. public XmlNodeType NodeType {
  50. get {
  51. throw new NotImplementedException();
  52. }
  53. }
  54. [MonoTODO]
  55. public object ObjectBeingDeserialized {
  56. get {
  57. throw new NotImplementedException();
  58. }
  59. }
  60. [MonoTODO]
  61. public string Text {
  62. get {
  63. throw new NotImplementedException();
  64. }
  65. }
  66. }
  67. }