XsltSettings Constructor (Boolean, Boolean)

 

Initializes a new instance of the XsltSettings class with the specified settings.

Namespace:   System.Xml.Xsl
Assembly:  System.Xml (in System.Xml.dll)

public:
XsltSettings(
	bool enableDocumentFunction,
	bool enableScript
)

Parameters

enableDocumentFunction
Type: System::Boolean

true to enable support for the XSLT document() function; otherwise, false.

enableScript
Type: System::Boolean

true to enable support for embedded scripts blocks; otherwise, false.

System_CAPS_security Security Note

XSLT scripting should be enabled only if you require script support and you are working in a fully trusted environment. If you enable the document() function, you can restrict the resources that can be accessed by passing an XmlSecureResolver object to the Transform method.

The following example loads a style sheet and enables XSLT script support.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show: