Xslt.Compile Method (Uri, XmlNameTable)Xslt.Compile Method (Uri, XmlNameTable)Xslt::Compile Method (Uri^, XmlNameTable^)

Compiles the specified XSLT stylesheet and returns an XsltXsltXslt object that represents the transformation. Default static context settings are used.

Syntax

Public Shared Function Compile( _
    stylesheetUri As Uri, _
    nameTable As System.Xml.XmlNameTable _
) As Xslt
public static Xslt Compile(
    Uri stylesheetUri,
    System.Xml.XmlNameTable nameTable
)
public:
static Xslt^ Compile(
    Uri^ stylesheetUri, 
    System.Xml::XmlNameTable^ nameTable
)
 

Parameters

stylesheetUri

Type: System.UriSystem.UriSystem::Uri^

The URI of the XSLT stylesheet.

nameTable

Type: System.Xml.XmlNameTableSystem.Xml.XmlNameTableSystem.Xml::XmlNameTable^

The name table for documents used with this transformation.

Return Value

Type: XmlPrime.XsltXmlPrime.XsltXmlPrime::Xslt^

An XsltXsltXslt object, or null a null reference (Nothing in Visual Basic) nullptr if an unrecoverable error was raised and handled by a subscriber to CompilationErrorCompilationErrorCompilationError

Exceptions

ExceptionCondition
ArgumentNullExceptionArgumentNullExceptionArgumentNullException stylesheetUri or nameTable is null a null reference (Nothing in Visual Basic) nullptr.
LicenceExceptionLicenceExceptionLicenceExceptionThis version of XmlPrime has expired.
XdmExceptionXdmExceptionXdmExceptionAn error occurred compiling the transformation.

Remarks

Any errors or warnings encountered during compilation raise the CompilationErrorCompilationErrorCompilationError event. If nothing subscribes to this event then an XdmExceptionXdmExceptionXdmException is thrown if an unrecoverable error is encountered. If this event is subscribed to then the exception is not thrown, and this method returns null a null reference (Nothing in Visual Basic) nullptr instead.