ms:type-namespace-uri([node-set]) 함수
제공된 노드 집합에서 현재 노드 또는 문서 순서상 첫 번째 노드의 XSD 데이터 형식에 연결된 네임스페이스 URI를 반환합니다.
string ms:type-namespace-uri([node-set])
설명
단순 XSD 형식에 대해 type-namespace-uri
함수는 빈 문자열을 반환합니다. name
특성이 지정된 복합 XSD 형식에 대해 type-namespace-uri
함수는 "http://www.example.microsoft.com/my-xsd-types."
와 같은 전체 URI를 반환합니다.
다음 샘플 식은 데이터 형식에 "PurchaseOrderType"의 네임스페이스 URI가 있는 노드를 반환합니다.
//*[ms:type-namespace-uri()='uri:PurchaseOrderType')]
예제
다음 예제에서는 XSLT 템플릿 규칙을 사용하여 books.xml에서 모든 요소를 선택하고 books.xsd에 정의된 대로 요소 데이터 형식 및 네임스페이스 URI를 출력합니다.
XML 파일(books.xml)
books.xml을 사용합니다.
XSD 파일(books.xsd)
books.xsd를 사용합니다.
XSLT 파일(books.xslt)
HTML 파일(books.html)
HTML 파일에는 XML, XSLT 및 XSD 파일 로드를 처리하는 JScript가 포함됩니다.
출력
x:catalog is of "" in ""
book is of "" in ""
author is of "string" in "http://www.w3.org/2001/XMLSchema"
Gambardella, Matthew
title is of "string" in "http://www.w3.org/2001/XMLSchema"
XML Developer's Guide
genre is of "string" in "http://www.w3.org/2001/XMLSchema"
Computer
price is of "float" in "http://www.w3.org/2001/XMLSchema"
44.95
publish_date is of "date" in "http://www.w3.org/2001/XMLSchema"
2000-10-01
description is of "string" in "http://www.w3.org/2001/XMLSchema"
An in-depth look at creating applications with XML.
x:catalog
및 book
요소는 익명 데이터 형식을 사용합니다. 따라서 ms:type-local-name()
및 ms:type-namespace-uri()
함수는 둘 다 빈 문자열을 반환합니다.