XslCompiledTransform::TemporaryFiles Property

 

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

Namespace:   System.Xml.Xsl
Assembly:  System.Xml (in System.Xml.dll)

public:
property TempFileCollection^ TemporaryFiles {
	[PermissionSetAttribute(SecurityAction::LinkDemand, Name = "FullTrust")]
	TempFileCollection^ get();
}

Property Value

Type: System.CodeDom.Compiler::TempFileCollection^

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.

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.

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

System_CAPS_noteNote

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

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show: