XslTransform.cs 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. // System.Xml.Xsl.XslTransform
  2. //
  3. // Author: Tim Coleman <[email protected]>
  4. // (C) Copyright 2002 Tim Coleman
  5. using System;
  6. using System.Xml.XPath;
  7. using System.IO;
  8. namespace System.Xml.Xsl
  9. {
  10. public class XslTransform
  11. {
  12. #region Fields
  13. XmlResolver xmlResolver;
  14. #endregion
  15. #region Constructors
  16. [MonoTODO]
  17. public XslTransform ()
  18. {
  19. }
  20. #endregion
  21. #region Properties
  22. XmlResolver XmlResolver {
  23. set { xmlResolver = value; }
  24. }
  25. #endregion
  26. #region Methods
  27. [MonoTODO]
  28. // Loads the XSLT stylesheet contained in the IXPathNavigable.
  29. public void Load (IXPathNavigable stylesheet)
  30. {
  31. throw new NotImplementedException ();
  32. }
  33. [MonoTODO]
  34. // Loads the XSLT stylesheet specified by a URL.
  35. public void Load (string url)
  36. {
  37. throw new NotImplementedException ();
  38. }
  39. [MonoTODO]
  40. // Loads the XSLT stylesheet contained in the XmlReader
  41. public void Load (XmlReader stylesheet)
  42. {
  43. throw new NotImplementedException ();
  44. }
  45. [MonoTODO]
  46. // Loads the XSLT stylesheet contained in the XPathNavigator
  47. public void Load (XPathNavigator stylesheet)
  48. {
  49. throw new NotImplementedException ();
  50. }
  51. [MonoTODO]
  52. // Loads the XSLT stylesheet contained in the IXPathNavigable.
  53. public void Load (IXPathNavigable stylesheet, XmlResolver resolver)
  54. {
  55. throw new NotImplementedException ();
  56. }
  57. [MonoTODO]
  58. // Loads the XSLT stylesheet specified by a URL.
  59. public void Load (string url, XmlResolver resolver)
  60. {
  61. throw new NotImplementedException ();
  62. }
  63. [MonoTODO]
  64. // Loads the XSLT stylesheet contained in the XmlReader
  65. public void Load (XmlReader stylesheet, XmlResolver resolver)
  66. {
  67. throw new NotImplementedException ();
  68. }
  69. [MonoTODO]
  70. // Loads the XSLT stylesheet contained in the XPathNavigator
  71. public void Load (XPathNavigator stylesheet, XmlResolver resolver)
  72. {
  73. throw new NotImplementedException ();
  74. }
  75. [MonoTODO]
  76. // Transforms the XML data in the IXPathNavigable using
  77. // the specified args and outputs the result to an XmlReader.
  78. public XmlReader Transform (IXPathNavigable input, XsltArgumentList args)
  79. {
  80. throw new NotImplementedException ();
  81. }
  82. [MonoTODO]
  83. // Transforms the XML data in the input file and outputs
  84. // the result to an output file.
  85. public void Transform (string inputfile, string outputfile)
  86. {
  87. throw new NotImplementedException ();
  88. }
  89. [MonoTODO]
  90. // Transforms the XML data in the XPathNavigator using
  91. // the specified args and outputs the result to an XmlReader.
  92. public XmlReader Transform (XPathNavigator input, XsltArgumentList args)
  93. {
  94. throw new NotImplementedException ();
  95. }
  96. [MonoTODO]
  97. // Transforms the XML data in the IXPathNavigable using
  98. // the specified args and outputs the result to a Stream.
  99. public void Transform (IXPathNavigable input, XsltArgumentList args, Stream output)
  100. {
  101. throw new NotImplementedException ();
  102. }
  103. [MonoTODO]
  104. // Transforms the XML data in the IXPathNavigable using
  105. // the specified args and outputs the result to a TextWriter.
  106. public void Transform (IXPathNavigable input, XsltArgumentList args, TextWriter output)
  107. {
  108. throw new NotImplementedException ();
  109. }
  110. [MonoTODO]
  111. // Transforms the XML data in the IXPathNavigable using
  112. // the specified args and outputs the result to an XmlWriter.
  113. public void Transform (IXPathNavigable input, XsltArgumentList args, XmlWriter output)
  114. {
  115. throw new NotImplementedException ();
  116. }
  117. [MonoTODO]
  118. // Transforms the XML data in the XPathNavigator using
  119. // the specified args and outputs the result to a Stream.
  120. public void Transform (XPathNavigator input, XsltArgumentList args, Stream output)
  121. {
  122. throw new NotImplementedException ();
  123. }
  124. [MonoTODO]
  125. // Transforms the XML data in the XPathNavigator using
  126. // the specified args and outputs the result to a TextWriter.
  127. public void Transform (XPathNavigator input, XsltArgumentList args, TextWriter output)
  128. {
  129. throw new NotImplementedException ();
  130. }
  131. [MonoTODO]
  132. // Transforms the XML data in the XPathNavigator using
  133. // the specified args and outputs the result to an XmlWriter.
  134. public void Transform (XPathNavigator input, XsltArgumentList args, XmlWriter output)
  135. {
  136. throw new NotImplementedException ();
  137. }
  138. #endregion
  139. }
  140. }