| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- // System.Xml.Xsl.XslTransform
- //
- // Author: Tim Coleman <[email protected]>
- // (C) Copyright 2002 Tim Coleman
- using System;
- using System.Xml.XPath;
- using System.IO;
- namespace System.Xml.Xsl
- {
- public class XslTransform
- {
- #region Fields
- XmlResolver xmlResolver;
- #endregion
- #region Constructors
- [MonoTODO]
- public XslTransform ()
- {
- }
- #endregion
- #region Properties
- XmlResolver XmlResolver {
- set { xmlResolver = value; }
- }
- #endregion
- #region Methods
- [MonoTODO]
- // Loads the XSLT stylesheet contained in the IXPathNavigable.
- public void Load (IXPathNavigable stylesheet)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- // Loads the XSLT stylesheet specified by a URL.
- public void Load (string url)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- // Loads the XSLT stylesheet contained in the XmlReader
- public void Load (XmlReader stylesheet)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- // Loads the XSLT stylesheet contained in the XPathNavigator
- public void Load (XPathNavigator stylesheet)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- // Loads the XSLT stylesheet contained in the IXPathNavigable.
- public void Load (IXPathNavigable stylesheet, XmlResolver resolver)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- // Loads the XSLT stylesheet specified by a URL.
- public void Load (string url, XmlResolver resolver)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- // Loads the XSLT stylesheet contained in the XmlReader
- public void Load (XmlReader stylesheet, XmlResolver resolver)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- // Loads the XSLT stylesheet contained in the XPathNavigator
- public void Load (XPathNavigator stylesheet, XmlResolver resolver)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- // Transforms the XML data in the IXPathNavigable using
- // the specified args and outputs the result to an XmlReader.
- public XmlReader Transform (IXPathNavigable input, XsltArgumentList args)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- // Transforms the XML data in the input file and outputs
- // the result to an output file.
- public void Transform (string inputfile, string outputfile)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- // Transforms the XML data in the XPathNavigator using
- // the specified args and outputs the result to an XmlReader.
- public XmlReader Transform (XPathNavigator input, XsltArgumentList args)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- // Transforms the XML data in the IXPathNavigable using
- // the specified args and outputs the result to a Stream.
- public void Transform (IXPathNavigable input, XsltArgumentList args, Stream output)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- // Transforms the XML data in the IXPathNavigable using
- // the specified args and outputs the result to a TextWriter.
- public void Transform (IXPathNavigable input, XsltArgumentList args, TextWriter output)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- // Transforms the XML data in the IXPathNavigable using
- // the specified args and outputs the result to an XmlWriter.
- public void Transform (IXPathNavigable input, XsltArgumentList args, XmlWriter output)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- // Transforms the XML data in the XPathNavigator using
- // the specified args and outputs the result to a Stream.
- public void Transform (XPathNavigator input, XsltArgumentList args, Stream output)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- // Transforms the XML data in the XPathNavigator using
- // the specified args and outputs the result to a TextWriter.
- public void Transform (XPathNavigator input, XsltArgumentList args, TextWriter output)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- // Transforms the XML data in the XPathNavigator using
- // the specified args and outputs the result to an XmlWriter.
- public void Transform (XPathNavigator input, XsltArgumentList args, XmlWriter output)
- {
- throw new NotImplementedException ();
- }
- #endregion
- }
- }
|