IXmlCompilerInclude.cs 593 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // IXmlCompilerInclude.cs
  3. //
  4. // Author:
  5. // Atsushi Enomoto <[email protected]>
  6. //
  7. #if NET_2_0
  8. using System.Xml;
  9. using MS.Internal.Xml.Query;
  10. namespace System.Xml.Query
  11. {
  12. public interface IXmlCompilerInclude
  13. {
  14. XmlExpression ResolveContextDocument ();
  15. XmlExpression ResolveFunction (XmlQualifiedName name, object [] parameters);
  16. XmlExpression ResolveVariable (XmlQualifiedName varName);
  17. }
  18. }
  19. // FIXME: This class should be in System.Xml in the future, but MS still keeps
  20. // this class in MS.Internal
  21. namespace MS.Internal.Xml.Query
  22. {
  23. public class XmlExpression
  24. {
  25. }
  26. }
  27. #endif