XmlCommand.cs 606 B

1234567891011121314151617181920212223242526
  1. //
  2. // System.Xml.Query.XmlCommand
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2003
  8. //
  9. #if NET_1_2
  10. using System.IO;
  11. namespace System.Xml.Query {
  12. public abstract class XmlCommand
  13. {
  14. #region Methods
  15. public abstract void Execute (string contextDocumentUri, XmlResolver dataSources, XmlQueryArgumentList argList, TextWriter results);
  16. public abstract void Execute (string contextDocumentUri, XmlResolver dataSources, XmlQueryArgumentList argList, Stream results);
  17. #endregion // Methods
  18. }
  19. }
  20. #endif // NET_1_2