Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoam Lampert <noaml@mono-cvs.ximian.com>2007-01-04 18:15:05 +0300
committerNoam Lampert <noaml@mono-cvs.ximian.com>2007-01-04 18:15:05 +0300
commit8d396abe4ea6f723e7d321fcaeed0c81c815e5d0 (patch)
tree0bbdeb066d1cc14ff11af147483757764cac1121 /mcs/class/System.XML/System.Xml.Xsl
parent3f5a4ccc1de773f5f2bd2cc6939e0bacf85e5069 (diff)
Grasshopper doesn't support TempFileCollection
svn path=/trunk/mcs/; revision=70484
Diffstat (limited to 'mcs/class/System.XML/System.Xml.Xsl')
-rw-r--r--mcs/class/System.XML/System.Xml.Xsl/XslCompiledTransform.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/mcs/class/System.XML/System.Xml.Xsl/XslCompiledTransform.cs b/mcs/class/System.XML/System.Xml.Xsl/XslCompiledTransform.cs
index f7f0fc28420..7f850a0abb5 100644
--- a/mcs/class/System.XML/System.Xml.Xsl/XslCompiledTransform.cs
+++ b/mcs/class/System.XML/System.Xml.Xsl/XslCompiledTransform.cs
@@ -48,7 +48,9 @@ namespace System.Xml.Xsl
{
bool enable_debug;
CompiledStylesheet s;
+#if !TARGET_JVM
TempFileCollection temporary_files;
+#endif
XmlWriterSettings output_settings = new XmlWriterSettings ();
public XslCompiledTransform ()
@@ -66,10 +68,12 @@ namespace System.Xml.Xsl
get { return output_settings; }
}
+#if !TARGET_JVM
[MonoTODO]
public TempFileCollection TemporaryFiles {
get { return temporary_files; }
}
+#endif
#region Transform