| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- //
- // System.Xml.Query.XQueryProcessor
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2003
- //
- #if NET_1_2
- using System.Data;
- using System.Data.SqlXml;
- using System.IO;
- namespace System.Xml.Query {
- public class XQueryProcessor
- {
- #region Fields
-
- XmlCommand xmlCommand;
- #endregion // Fields
- #region Constructors
- [MonoTODO]
- public XQueryProcessor ()
- {
- }
- #endregion // Constructors
- #region Properties
-
- [MonoTODO]
- public SqlQueryOptions SqlQueryOptions {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- public XmlCommand XmlCommand {
- get { return xmlCommand; }
- }
- [MonoTODO]
- public XmlViewSchemaDictionary XmlViewSchemaDictionary {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- #endregion // Properties
- #region Methods
- [MonoTODO]
- public void Compile (string query)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void Compile (TextReader query)
- {
- // Should generate an XmlCommand
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void CompileView (string query, string mappingLocation)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void CompileView (TextReader query, string mappingLocation)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void Execute (string contextDocumentUri, XmlResolver dataSources, TextWriter results)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void Execute (XmlResolver dataSources, TextWriter results)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void ExecuteView (IDbConnection connection, TextWriter results)
- {
- throw new NotImplementedException ();
- }
- #endregion // Methods
- }
- }
- #endif // NET_1_2
|