XslCompiledTransform Constructor (Boolean)
Initializes a new instance of the XslCompiledTransform class with the specified debug setting.
Assembly: System.Xml (in System.Xml.dll)
Parameters
- enableDebug
-
Type:
System::Boolean
true to generate debug information; otherwise false. Setting this to true enables you to debug the style sheet with the Microsoft Visual Studio Debugger.
The following conditions must be met in order to step into the code and debug the style sheet:
The enableDebug parameter is set to true.
The style sheet is passed to the Load method either as a URI, or an implementation of the XmlReader class that implements the IXmlLineInfo interface. The IXmlLineInfo interface is implemented on all text-parsing XmlReader objects.
In other words, if the style sheet is loaded using an IXPathNavigable object, such as an XmlDocument or XPathDocument, or an XmlReader implementation that does not implement the IXmlLineInfo interface, you cannot debug the style sheet.
The XmlResolver used to load the style sheet is a file-based XmlResolver, such as the XmlUrlResolver (this is the default XmlResolver used by the XslCompiledTransform class).
The style sheet is located on the local machine or on the intranet.
Available since 2.0