XmlQualifiedNameTable.cs 934 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. //
  2. // XmlQualifiedNameTable.cs
  3. //
  4. // Author:
  5. // Atsushi Enomoto <[email protected]>
  6. //
  7. //
  8. #if NET_1_2
  9. using System;
  10. using System.Collections;
  11. namespace System.Xml
  12. {
  13. public class XmlQualifiedNameTable
  14. {
  15. public XmlQualifiedNameTable (XmlNameTable nt)
  16. {
  17. throw new NotImplementedException ();
  18. }
  19. public XmlNameTable NameTable {
  20. get { throw new NotImplementedException (); }
  21. }
  22. public XmlQualifiedName Add (string name, string ns)
  23. {
  24. throw new NotImplementedException ();
  25. }
  26. public XmlQualifiedName AtomizedAdd (string name, string ns)
  27. {
  28. throw new NotImplementedException ();
  29. }
  30. public XmlQualifiedName AtomizedGet (string name, string ns)
  31. {
  32. throw new NotImplementedException ();
  33. }
  34. public XmlQualifiedName Get (string name, string ns)
  35. {
  36. throw new NotImplementedException ();
  37. }
  38. public IEnumerator GetEnumerator()
  39. {
  40. throw new NotImplementedException ();
  41. }
  42. }
  43. }
  44. #endif