diff Source/Reflection/Extension/TypeExtension.xsd @ 0:f990fcb411a9

Копия текущей версии из github
author cin
date Thu, 27 Mar 2014 21:46:09 +0400
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Source/Reflection/Extension/TypeExtension.xsd	Thu Mar 27 21:46:09 2014 +0400
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xs:schema id="TypeInfo"
+	xmlns:m="urn:schemas-bltoolkit-net:mapping"
+	xmlns:xs="http://www.w3.org/2001/XMLSchema"
+	xmlns:tns="urn:schemas-bltoolkit-net:typeext"
+	targetNamespace="urn:schemas-bltoolkit-net:typeext">
+	
+	<xs:element name="Types" type="tns:Types" />
+
+	<xs:complexType name="Types">
+		<xs:choice minOccurs="0" maxOccurs="unbounded">
+			<xs:element name="Type" type="tns:Type" minOccurs="0" maxOccurs="unbounded" />
+		</xs:choice>
+	</xs:complexType>
+
+	<xs:complexType name="Type">
+		<xs:choice minOccurs="0" maxOccurs="unbounded">
+			<xs:element name="Member" type="tns:Member" minOccurs="0" maxOccurs="unbounded" />
+			<xs:any namespace="##other" processContents="lax"/>
+		</xs:choice>
+		<xs:attribute name="Name" type="xs:NCName" use="required" />
+		<xs:anyAttribute namespace="##other" processContents="lax" />
+	</xs:complexType>
+
+	<xs:complexType name="Member">
+		<xs:choice minOccurs="0" maxOccurs="unbounded">
+			<xs:any namespace="##other" minOccurs="0" maxOccurs="unbounded" processContents="lax" />
+		</xs:choice>
+		<xs:attribute name="Name" type="xs:NCName" use="required" />
+		<xs:anyAttribute namespace="##other" processContents="skip" />
+	</xs:complexType>
+
+</xs:schema>