XmlNameTable.cs 534 B

1234567891011121314151617181920
  1. // -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
  2. //
  3. // System.Xml.XmlNameTable.cs
  4. //
  5. // Author:
  6. // Jason Diamond ([email protected])
  7. //
  8. // (C) 2001 Jason Diamond http://injektilo.org/
  9. //
  10. namespace System.Xml
  11. {
  12. public abstract class XmlNameTable
  13. {
  14. public abstract string Add (string name);
  15. public abstract string Add (char [] buffer, int offset, int length);
  16. public abstract string Get (string name);
  17. public abstract string Get (char [] buffer, int offset, int length);
  18. }
  19. }