XslCompiledTransform.TemporaryFiles Proprietà

Definizione

Ottiene l'oggetto TempFileCollection contenente i file temporanei generati sul disco dopo una chiamata al metodo Load.

public:
 property System::CodeDom::Compiler::TempFileCollection ^ TemporaryFiles { System::CodeDom::Compiler::TempFileCollection ^ get(); };
public System.CodeDom.Compiler.TempFileCollection TemporaryFiles { get; }
member this.TemporaryFiles : System.CodeDom.Compiler.TempFileCollection
Public ReadOnly Property TemporaryFiles As TempFileCollection

Valore della proprietà

Oggetto TempFileCollection contenente i file temporanei generati sul disco. Questo valore è null se la chiamata al metodo Load ha dato esito negativo o se la funzione di debug non è attivata.

Esempio

Nell'esempio seguente vengono scritti i nomi dei file temporanei nella console.

Nota

I file temporanei vengono creati solo quando si caricano fogli di stile con <blocchi msxsl:script> .

// 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);
' Create the XslCompiledTransform object.
Dim xslt As 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.
Dim filename As String
For Each filename In xslt.TemporaryFiles
    Console.WriteLine(filename)
Next filename

Commenti

Questa proprietà identifica i file generati durante l'elaborazione XSLT. I file vengono inseriti nella directory Temp (specificata dalla variabile di ambiente %TEMP%) È possibile eliminare questi file dopo il completamento dell'elaborazione XSLT.

Si applica a

Vedi anche