다음을 통해 공유


XsltSettings.Default 속성

정의

기본 설정을 사용하는 XsltSettings 개체를 가져옵니다. XSLT document() 함수와 포함된 스크립트 블록은 지원되지 않습니다.

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

속성 값

XsltSettings

XsltSettingsEnableDocumentFunction 속성이 false로 설정된 EnableScript 개체입니다.

예제

다음 예제에서는 기본 XSLT 설정이 있는 스타일시트를 로드합니다.

// 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())

적용 대상

추가 정보