XQueryProcessor.cs 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. //
  2. // System.Xml.Query.XQueryProcessor
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2003
  8. //
  9. #if NET_1_2
  10. using System.Data;
  11. using System.Data.SqlXml;
  12. using System.IO;
  13. namespace System.Xml.Query {
  14. public class XQueryProcessor
  15. {
  16. #region Fields
  17. XmlCommand xmlCommand;
  18. #endregion // Fields
  19. #region Constructors
  20. [MonoTODO]
  21. public XQueryProcessor ()
  22. {
  23. }
  24. #endregion // Constructors
  25. #region Properties
  26. [MonoTODO]
  27. public SqlQueryOptions SqlQueryOptions {
  28. get { throw new NotImplementedException (); }
  29. set { throw new NotImplementedException (); }
  30. }
  31. public XmlCommand XmlCommand {
  32. get { return xmlCommand; }
  33. }
  34. [MonoTODO]
  35. public XmlViewSchemaDictionary XmlViewSchemaDictionary {
  36. get { throw new NotImplementedException (); }
  37. set { throw new NotImplementedException (); }
  38. }
  39. #endregion // Properties
  40. #region Methods
  41. [MonoTODO]
  42. public void Compile (string query)
  43. {
  44. throw new NotImplementedException ();
  45. }
  46. [MonoTODO]
  47. public void Compile (TextReader query)
  48. {
  49. // Should generate an XmlCommand
  50. throw new NotImplementedException ();
  51. }
  52. [MonoTODO]
  53. public void CompileView (string query, string mappingLocation)
  54. {
  55. throw new NotImplementedException ();
  56. }
  57. [MonoTODO]
  58. public void CompileView (TextReader query, string mappingLocation)
  59. {
  60. throw new NotImplementedException ();
  61. }
  62. [MonoTODO]
  63. public void Execute (string contextDocumentUri, XmlResolver dataSources, TextWriter results)
  64. {
  65. throw new NotImplementedException ();
  66. }
  67. [MonoTODO]
  68. public void Execute (XmlResolver dataSources, TextWriter results)
  69. {
  70. throw new NotImplementedException ();
  71. }
  72. [MonoTODO]
  73. public void ExecuteView (IDbConnection connection, TextWriter results)
  74. {
  75. throw new NotImplementedException ();
  76. }
  77. #endregion // Methods
  78. }
  79. }
  80. #endif // NET_1_2