XsltSettings.Default 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
기본 설정을 사용하는 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 및 EnableDocumentFunction 속성이 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())