XsltSettings.Default Property

Definition

Gets an XsltSettings object with default settings. Support for the XSLT document() function and embedded script blocks is disabled.

public:
 static property System::Xml::Xsl::XsltSettings ^ Default { System::Xml::Xsl::XsltSettings ^ get(); };
public static System.Xml.Xsl.XsltSettings Default { get; }
static member Default : System.Xml.Xsl.XsltSettings
Public Shared ReadOnly Property Default As XsltSettings

Property Value

An XsltSettings object with the EnableDocumentFunction and EnableScript properties set to false.

Examples

The following example loads a style sheet with default XSLT settings.

// Create the XslCompiledTransform object and load the style sheet.
XslCompiledTransform xslt = new XslCompiledTransform();
xslt.Load("sort.xsl", XsltSettings.Default, new XmlUrlResolver());
' Create the XslCompiledTransform object and load the style sheet.
Dim xslt As New XslCompiledTransform()
xslt.Load("sort.xsl", XsltSettings.Default, New XmlUrlResolver())

Applies to

See also