Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

XsltSettings.Default Property

Definition

Namespace:
System.Xml.Xsl
Assemblies:
netstandard.dll, System.Xml.ReaderWriter.dll
Assembly:
System.Xml.ReaderWriter.dll
Assembly:
System.Xml.dll
Assembly:
netstandard.dll
Source:
XsltSettings.cs
Source:
XsltSettings.cs
Source:
XsltSettings.cs
Source:
XsltSettings.cs
Source:
XsltSettings.cs

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

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


Feedback

Was this page helpful?