XsltProcessor.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. //
  2. // System.Xml.Query.XsltProcessor
  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 class XsltProcessor
  13. {
  14. #region Constructors
  15. [MonoTODO]
  16. public XsltProcessor ()
  17. {
  18. }
  19. #endregion // Constructors
  20. #region Properties
  21. [MonoTODO]
  22. public XmlCommand XmlCommand {
  23. get { throw new NotImplementedException (); }
  24. }
  25. #endregion // Properties
  26. #region Methods
  27. [MonoTODO]
  28. public void Compile (string stylesheetUri, XmlResolver resolver)
  29. {
  30. throw new NotImplementedException ();
  31. }
  32. [MonoTODO]
  33. public void Compile (string stylesheetUri)
  34. {
  35. throw new NotImplementedException ();
  36. }
  37. [MonoTODO]
  38. public void Execute (string contextDocumentUri, XmlResolver dataSources, XmlQueryArgumentList argList, TextWriter results)
  39. {
  40. throw new NotImplementedException ();
  41. }
  42. [MonoTODO]
  43. public void Execute (string contextDocumentUri, XmlResolver dataSources, XmlQueryArgumentList argList, Stream results)
  44. {
  45. throw new NotImplementedException ();
  46. }
  47. [MonoTODO]
  48. public void Execute (string contextDocumentUri, string resultDocumentUri)
  49. {
  50. throw new NotImplementedException ();
  51. }
  52. #endregion // Methods
  53. }
  54. }
  55. #endif // NET_1_2