XmlItemView.cs 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. //
  2. // XmlItemView.cs
  3. //
  4. // Author:
  5. // Atsushi Enomoto <[email protected]>
  6. //
  7. //
  8. // Permission is hereby granted, free of charge, to any person obtaining
  9. // a copy of this software and associated documentation files (the
  10. // "Software"), to deal in the Software without restriction, including
  11. // without limitation the rights to use, copy, modify, merge, publish,
  12. // distribute, sublicense, and/or sell copies of the Software, and to
  13. // permit persons to whom the Software is furnished to do so, subject to
  14. // the following conditions:
  15. //
  16. // The above copyright notice and this permission notice shall be
  17. // included in all copies or substantial portions of the Software.
  18. //
  19. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  20. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  21. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  22. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  23. // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  24. // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  25. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  26. //
  27. #if NET_2_0
  28. using System;
  29. using System.ComponentModel;
  30. using System.Xml.XPath;
  31. namespace System.Xml
  32. {
  33. public class XmlItemView : ICustomTypeDescriptor, IXPathNavigable
  34. {
  35. [MonoTODO]
  36. public XPathNavigator CreateNavigator ()
  37. {
  38. throw new NotImplementedException ();
  39. }
  40. [MonoTODO]
  41. public virtual AttributeCollection GetAttributes ()
  42. {
  43. throw new NotImplementedException ();
  44. }
  45. [MonoTODO]
  46. public virtual string GetClassName ()
  47. {
  48. throw new NotImplementedException ();
  49. }
  50. [MonoTODO]
  51. public virtual string GetComponentName ()
  52. {
  53. throw new NotImplementedException ();
  54. }
  55. [MonoTODO]
  56. public virtual TypeConverter GetConverter ()
  57. {
  58. throw new NotImplementedException ();
  59. }
  60. [MonoTODO]
  61. public virtual EventDescriptor GetDefaultEvent ()
  62. {
  63. throw new NotImplementedException ();
  64. }
  65. [MonoTODO]
  66. public virtual PropertyDescriptor GetDefaultProperty ()
  67. {
  68. throw new NotImplementedException ();
  69. }
  70. [MonoTODO]
  71. public virtual object GetEditor (Type editorBaseType)
  72. {
  73. throw new NotImplementedException ();
  74. }
  75. [MonoTODO]
  76. public virtual EventDescriptorCollection GetEvents ()
  77. {
  78. throw new NotImplementedException ();
  79. }
  80. [MonoTODO]
  81. public virtual EventDescriptorCollection GetEvents (Attribute [] attributes)
  82. {
  83. throw new NotImplementedException ();
  84. }
  85. [MonoTODO]
  86. public virtual PropertyDescriptorCollection GetProperties ()
  87. {
  88. throw new NotImplementedException ();
  89. }
  90. [MonoTODO]
  91. public virtual PropertyDescriptorCollection GetProperties (Attribute [] attrs)
  92. {
  93. throw new NotImplementedException ();
  94. }
  95. [MonoTODO]
  96. public virtual object GetPropertyOwner (PropertyDescriptor pd)
  97. {
  98. throw new NotImplementedException ();
  99. }
  100. [MonoTODO]
  101. public virtual object this [int index] {
  102. get { throw new NotImplementedException (); }
  103. set { throw new NotImplementedException (); }
  104. }
  105. [MonoTODO]
  106. public virtual object this [string fieldName] {
  107. get { throw new NotImplementedException (); }
  108. set { throw new NotImplementedException (); }
  109. }
  110. [MonoTODO]
  111. public virtual XmlItemViewCollection XmlItemViewCollection {
  112. get { throw new NotImplementedException (); }
  113. }
  114. }
  115. }
  116. #endif