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.
|
|
<?xml version="1.0" encoding="utf-8"?> <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"> <xs:simpleType name="DataRowState"> <xs:list> <xs:simpleType> <xs:restriction base="xs:string"> <xs:enumeration value="Detached" /> <xs:enumeration value="Unchanged" /> <xs:enumeration value="Added" /> <xs:enumeration value="Deleted" /> <xs:enumeration value="Modified" /> </xs:restriction> </xs:simpleType> </xs:list> </xs:simpleType> <xs:element name="DataRowState" nillable="true" type="tns:DataRowState" /> </xs:schema>
|