Прочитај на енглеском Уреди

Делите путем


XslCompiledTransform.TemporaryFiles Property

Definition

Gets the TempFileCollection that contains the temporary files generated on disk after a successful call to the Load method.

C#
public System.CodeDom.Compiler.TempFileCollection TemporaryFiles { get; }

Property Value

The TempFileCollection that contains the temporary files generated on disk. This value is null if the Load method has not been successfully called, or if debugging has not been enabled.

Examples

The following example writes the names of temporary files to the console.

Напомена

Temporary files are created only when loading style sheets with <msxsl:script> blocks.

C#
// Create the XslCompiledTransform object.
XslCompiledTransform xslt = new XslCompiledTransform(true);

// Load the style sheet and enable scripts.
// Temporary files are created only for style sheets with <msxsl:script> blocks.
xslt.Load("output.xsl", XsltSettings.TrustedXslt, new XmlUrlResolver());

// Transform the file.
xslt.Transform("books.xml", "output.xml");

// Output names of temporary files.
foreach (string filename in xslt.TemporaryFiles)
    Console.WriteLine(filename);

Remarks

This property identifies the files that were generated during XSLT processing. The files are placed in your Temp directory (specified by the %TEMP% environment variable) You can delete these files after the XSLT processing has completed.

Applies to

Производ Верзије
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also