Procedura: eseguire una trasformazione XSLT utilizzando un assembly
Il compilatore XSLT (xsltc.exe) consente di compilare fogli di stile XSLT e di generare un assembly. L'assembly può essere passato direttamente nel metodo XslCompiledTransform.Load(Type).
Per copiare i file XML e XSLT nel computer locale
Copiare il file XSLT nel computer locale e denominarlo Transform.xsl.
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:user="urn:my-scripts"> <msxsl:script language="C#" implements-prefix="user"> <![CDATA[ public string discount(string price){ char[] trimChars = { '$' }; //trim leading $, convert price to type double double discount_value = Convert.ToDouble(price.TrimStart(trimChars)); //apply 10% discount and round appropriately discount_value = .9*discount_value; //convert value to decimal and format as currency string discount_price = discount_value.ToString("C"); return discount_price; } ]]> </msxsl:script> <xsl:template match="catalog"> <html> <head></head> <body> <table border="1"> <tr> <th align="left">Title</th> <th align="left">Author</th> <th align="left">Genre</th> <th align="left">Publish Date</th> <th align="left">Price</th> </tr> <xsl:for-each select="book"> <tr> <td> <xsl:value-of select="title"/> </td> <td> <xsl:value-of select="author"/> </td> <td> <xsl:value-of select="genre"/> </td> <td> <xsl:value-of select="publish_date"/> </td> <xsl:choose> <xsl:when test="genre = 'Fantasy'"> <td> <xsl:value-of select="user:discount(price)"/> </td> </xsl:when> <xsl:otherwise> <td> <xsl:value-of select="price"/> </td> </xsl:otherwise> </xsl:choose> </tr> </xsl:for-each> </table> </body> </html> </xsl:template> </xsl:stylesheet>
Copiare il file XML nel computer locale e denominarlo books.xml.
<?xml version="1.0"?> <catalog> <book id="bk101"> <author>Gambardella, Matthew</author> <title>XML Developer's Guide</title> <genre>Computer</genre> <price>$44.95</price> <publish_date>2000-10-01</publish_date> </book> <book id="bk102"> <author>Ralls, Kim</author> <title>Midnight Rain</title> <genre>Fantasy</genre> <price>$5.95</price> <publish_date>2000-12-16</publish_date> </book> <book id="bk103"> <author>Corets, Eva</author> <title>Maeve Ascendant</title> <genre>Fantasy</genre> <price>$5.95</price> <publish_date>2000-11-17</publish_date> </book> <book id="bk106"> <author>Randall, Cynthia</author> <title>Lover Birds</title> <genre>Romance</genre> <price>$4.95</price> <publish_date>2000-09-02</publish_date> </book> <book id="bk107"> <author>Thurman, Paula</author> <title>Splish Splash</title> <genre>Romance</genre> <price>$4.95</price> <publish_date>2000-11-02</publish_date> </book> </catalog>
Per compilare il foglio di stile con lo script abilitato.
Quando si esegue il comando seguente dalla riga di comando, vengono creati due assembly denominati Transform.dll e Transform_Script1.dll. Questo è il comportamento predefinito. Se non viene specificato diversamente, il nome della classe e il nome dell'assieme vengono impostati sul nome del foglio di stile principale.
xsltc /settings:script+ Transform.xsl
Il seguente comando consente di impostare in modo esplicito il nome della classe su Transform:
xsltc /settings:script+ /class:Transform Transform.xsl
Per includere l'assembly compilato come riferimento quando si compila il codice
È possibile includere un assembly in Visual Studio aggiungendo un riferimento in Esplora soluzioni o dalla riga di comando.
Per la riga di comando con C#, utilizzare il comando seguente:
csc myCode.cs /r:system.dll;system.xml.dll;Transform.dll
Per la riga di comando con Visual Basic, utilizzare il comando seguente:
vbc myCode.vb /r:system.dll;system.xml.dll;Transform.dll
Per utilizzare l'assembly compilato nel codice
- Nell'esempio seguente viene illustrato come eseguire la trasformazione XSLT utilizzando il foglio di stile compilato.
Imports System
Imports System.Xml.Xsl
Module Module1
Sub Main()
'Create a new XslCompiledTransform and load the compiled transformation.
Dim xslt As New XslCompiledTransform()
xslt.Load(GetType(Transform))
'Execute the transform and output the results to a file.
xslt.Transform("books.xml", "discount_books.html")
End Sub
End Module
using System;
using System.Xml.Xsl;
class Example
{
static void Main()
{
//Create a new XslCompiledTransform and load the compiled transformation.
XslCompiledTransform xslt = new XslCompiledTransform();
xslt.Load(typeof(Transform));
// Execute the transformation and output the results to a file.
xslt.Transform("books.xml", "discount_books.html");
}
}
Per eseguire un collegamento dinamico all'assembly compilato, sostituire
xslt.Load(typeof(Transform))
con
xslt.Load(System.Reflection.Assembly.Load("Transform").GetType("Transform"))
nell'esempio precedente. Per ulteriori informazioni sul metodo Assembly.Load, vedere Load.
Vedere anche
Riferimenti
Concetti
Compilazione dalla riga di comando con csc.exe