IdPattern.cs 540 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // Mono.Xml.XPath.IdPattern
  3. //
  4. // Author:
  5. // Ben Maurer ([email protected])
  6. //
  7. // (C) 2003 Ben Maurer
  8. //
  9. using System;
  10. using System.Collections;
  11. using System.IO;
  12. using System.Xml;
  13. using System.Xml.Schema;
  14. using System.Xml.XPath;
  15. using System.Xml.Xsl;
  16. namespace Mono.Xml.XPath {
  17. internal class IdPattern : Pattern {
  18. string arg0;
  19. public IdPattern (string arg0)
  20. {
  21. this.arg0 = arg0;
  22. }
  23. public override bool Matches (XPathNavigator node, XsltContext ctx)
  24. {
  25. throw new NotImplementedException ();
  26. }
  27. }
  28. }