| 1234567891011121314151617181920212223242526 |
- //
- // System.Xml.Query.XmlCommand
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2003
- //
- #if NET_2_0
- using System.IO;
- namespace System.Xml.Query {
- public abstract class XmlCommand
- {
- #region Methods
- public abstract void Execute (string contextDocumentUri, XmlResolver dataSources, XmlQueryArgumentList argList, TextWriter results);
- public abstract void Execute (string contextDocumentUri, XmlResolver dataSources, XmlQueryArgumentList argList, Stream results);
- #endregion // Methods
- }
- }
- #endif // NET_2_0
|