XmlItemView.cs 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. //
  2. // XmlItemView.cs
  3. //
  4. // Author:
  5. // Atsushi Enomoto <[email protected]>
  6. //
  7. #if NET_2_0
  8. using System;
  9. using System.ComponentModel;
  10. using System.Xml.XPath;
  11. namespace System.Xml
  12. {
  13. public class XmlItemView : ICustomTypeDescriptor, IXPathNavigable
  14. {
  15. [MonoTODO]
  16. public XPathNavigator CreateNavigator ()
  17. {
  18. throw new NotImplementedException ();
  19. }
  20. [MonoTODO]
  21. public virtual AttributeCollection GetAttributes ()
  22. {
  23. throw new NotImplementedException ();
  24. }
  25. [MonoTODO]
  26. public virtual string GetClassName ()
  27. {
  28. throw new NotImplementedException ();
  29. }
  30. [MonoTODO]
  31. public virtual string GetComponentName ()
  32. {
  33. throw new NotImplementedException ();
  34. }
  35. [MonoTODO]
  36. public virtual TypeConverter GetConverter ()
  37. {
  38. throw new NotImplementedException ();
  39. }
  40. [MonoTODO]
  41. public virtual EventDescriptor GetDefaultEvent ()
  42. {
  43. throw new NotImplementedException ();
  44. }
  45. [MonoTODO]
  46. public virtual PropertyDescriptor GetDefaultProperty ()
  47. {
  48. throw new NotImplementedException ();
  49. }
  50. [MonoTODO]
  51. public virtual object GetEditor (Type editorBaseType)
  52. {
  53. throw new NotImplementedException ();
  54. }
  55. [MonoTODO]
  56. public virtual EventDescriptorCollection GetEvents ()
  57. {
  58. throw new NotImplementedException ();
  59. }
  60. [MonoTODO]
  61. public virtual EventDescriptorCollection GetEvents (Attribute [] attributes)
  62. {
  63. throw new NotImplementedException ();
  64. }
  65. [MonoTODO]
  66. public virtual PropertyDescriptorCollection GetProperties ()
  67. {
  68. throw new NotImplementedException ();
  69. }
  70. [MonoTODO]
  71. public virtual PropertyDescriptorCollection GetProperties (Attribute [] attrs)
  72. {
  73. throw new NotImplementedException ();
  74. }
  75. [MonoTODO]
  76. public virtual object GetPropertyOwner (PropertyDescriptor pd)
  77. {
  78. throw new NotImplementedException ();
  79. }
  80. [MonoTODO]
  81. public virtual object this [int index] {
  82. get { throw new NotImplementedException (); }
  83. set { throw new NotImplementedException (); }
  84. }
  85. [MonoTODO]
  86. public virtual object this [string fieldName] {
  87. get { throw new NotImplementedException (); }
  88. set { throw new NotImplementedException (); }
  89. }
  90. [MonoTODO]
  91. public virtual XmlItemViewCollection XmlItemViewCollection {
  92. get { throw new NotImplementedException (); }
  93. }
  94. }
  95. }
  96. #endif