XmlSchemaSet.cs 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. //
  2. // XmlSchemaSet.cs
  3. //
  4. // Author:
  5. // Atsushi Enomoto <[email protected]>
  6. //
  7. // (C)2003 Atsushi Enomoto
  8. //
  9. #if NET_1_2
  10. using System;
  11. using System.Collections;
  12. using System.Collections.Specialized;
  13. using System.ComponentModel;
  14. using System.IO;
  15. using System.Security.Policy;
  16. using System.Xml.Schema;
  17. using System.Xml.XPath;
  18. namespace System.Xml.Schema
  19. {
  20. public class XmlSchemaSet
  21. {
  22. public int Count {
  23. get { throw new NotImplementedException (); }
  24. }
  25. public XmlSchemaObjectTable GlobalAttributes {
  26. get { throw new NotImplementedException (); }
  27. }
  28. public XmlSchemaObjectTable GlobalElements {
  29. get { throw new NotImplementedException (); }
  30. }
  31. public XmlSchemaObjectTable GlobalTypes {
  32. get { throw new NotImplementedException (); }
  33. }
  34. public bool IsCompiled {
  35. get { throw new NotImplementedException (); }
  36. }
  37. public XmlNameTable NameTable {
  38. get { throw new NotImplementedException (); }
  39. }
  40. public XmlResolver XmlResolver {
  41. set { throw new NotImplementedException (); }
  42. }
  43. public XmlSchema Add (string targetNamespace, string url)
  44. {
  45. throw new NotImplementedException ();
  46. }
  47. public XmlSchema Add (string targetNamespace, XmlReader reader)
  48. {
  49. throw new NotImplementedException ();
  50. }
  51. public void Add (XmlSchemaSet schemaSet)
  52. {
  53. throw new NotImplementedException ();
  54. }
  55. public XmlSchema Add (XmlSchema schema)
  56. {
  57. throw new NotImplementedException ();
  58. }
  59. public void Compile ()
  60. {
  61. throw new NotImplementedException ();
  62. }
  63. public bool Contains (string targetNamespace)
  64. {
  65. throw new NotImplementedException ();
  66. }
  67. public bool Contains (XmlSchema targetNamespace)
  68. {
  69. throw new NotImplementedException ();
  70. }
  71. public void CopyTo (XmlSchema[] array, int index)
  72. {
  73. throw new NotImplementedException ();
  74. }
  75. public XmlSchema Remove (XmlSchema schema)
  76. {
  77. throw new NotImplementedException ();
  78. }
  79. public ArrayList Schemas ()
  80. {
  81. throw new NotImplementedException ();
  82. }
  83. public ArrayList Schemas (string targetNamespace)
  84. {
  85. throw new NotImplementedException ();
  86. }
  87. public XmlSchemaSet ()
  88. {
  89. throw new NotImplementedException ();
  90. }
  91. public XmlSchemaSet (XmlNameTable nameTable)
  92. {
  93. throw new NotImplementedException ();
  94. }
  95. }
  96. }
  97. #endif