KeyPattern.cs 583 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // Mono.Xml.XPath.KeyPattern
  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 KeyPattern : Pattern {
  18. string arg0, arg1;
  19. public KeyPattern (string arg0, string arg1)
  20. {
  21. this.arg0 = arg0;
  22. this.arg1 = arg1;
  23. }
  24. public override bool Matches (XPathNavigator node, XsltContext ctx)
  25. {
  26. throw new NotImplementedException ();
  27. }
  28. }
  29. }