XslCompiledTransform::CompileToType Method (XmlReader^, XsltSettings^, XmlResolver^, Boolean, TypeBuilder^, String^)
Compiles an XSLT style sheet to a specified type.
Assembly: System.Xml (in System.Xml.dll)
public: static CompilerErrorCollection^ CompileToType( XmlReader^ stylesheet, XsltSettings^ settings, XmlResolver^ stylesheetResolver, bool debug, TypeBuilder^ typeBuilder, String^ scriptAssemblyPath )
Parameters
- stylesheet
-
Type:
System.Xml::XmlReader^
An XmlReader positioned at the beginning of the style sheet to be compiled.
- settings
-
Type:
System.Xml.Xsl::XsltSettings^
The XsltSettings to be applied to the style sheet. If this is null, the Default will be applied.
- stylesheetResolver
-
Type:
System.Xml::XmlResolver^
The XmlResolver use to resolve style sheet modules referenced in xsl:import and xsl:include elements. If this is null, external resources will not be resolved.
- debug
-
Type:
System::Boolean
Setting this to true enables debugging the style sheet with a debugger.
- typeBuilder
-
Type:
System.Reflection.Emit::TypeBuilder^
The TypeBuilder used for the style sheet compilation. The provided TypeBuilder is used to generate the resulting type.
- scriptAssemblyPath
-
Type:
System::String^
The base path for the assemblies generated for msxsl:script elements. If only one script assembly is generated, this parameter specifies the path for that assembly. In case of multiple script assemblies, a distinctive suffix will be appended to the file name to ensure uniqueness of assembly names.
Return Value
Type: System.CodeDom.Compiler::CompilerErrorCollection^A CompilerErrorCollection object containing compiler errors and warnings that indicate the results of the compilation.
The xsltc.exe tool is a wrapper around the CompileToType method. Compiling style sheets with the xsltc.exe will meet the demands of most applications that leverage the use of compiled style sheets. The CompileToType method should be used when building custom compilation tools.
Available since 2.0