| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- //
- // System.Xml.Query.XsltProcessor
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2003
- //
- #if NET_2_0
- using System.IO;
- namespace System.Xml.Query {
- public class XsltProcessor
- {
- #region Constructors
-
- [MonoTODO]
- public XsltProcessor ()
- {
- }
- #endregion // Constructors
- #region Properties
-
- [MonoTODO]
- public XmlCommand XmlCommand {
- get { throw new NotImplementedException (); }
- }
- #endregion // Properties
- #region Methods
- [MonoTODO]
- public void Compile (string stylesheetUri, XmlResolver resolver)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void Compile (string stylesheetUri)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void Execute (string contextDocumentUri, XmlResolver dataSources, XmlQueryArgumentList argList, TextWriter results)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void Execute (string contextDocumentUri, XmlResolver dataSources, XmlQueryArgumentList argList, Stream results)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void Execute (string contextDocumentUri, string resultDocumentUri)
- {
- throw new NotImplementedException ();
- }
- #endregion // Methods
- }
- }
- #endif // NET_2_0
|