You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
778 B

2 weeks ago
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <xs:schema xmlns:tns="http://schemas.datacontract.org/2004/07/System.Data" elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/System.Data" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  3. <xs:simpleType name="DataRowState">
  4. <xs:list>
  5. <xs:simpleType>
  6. <xs:restriction base="xs:string">
  7. <xs:enumeration value="Detached" />
  8. <xs:enumeration value="Unchanged" />
  9. <xs:enumeration value="Added" />
  10. <xs:enumeration value="Deleted" />
  11. <xs:enumeration value="Modified" />
  12. </xs:restriction>
  13. </xs:simpleType>
  14. </xs:list>
  15. </xs:simpleType>
  16. <xs:element name="DataRowState" nillable="true" type="tns:DataRowState" />
  17. </xs:schema>