我想为 String 创建 XMLSchema ,
String parameter="<root><HostName>Arasanalu</HostName><AdminUserName>Administrator</AdminUserName>
<AdminPassword>A1234</AdminPassword><PlaceNumber>38</PlaceNumber></root>"
我们可以自动向它添加更多元素。然后如何为此创建 XMLSchema。
因为我们有上述字符串的静态模式将是
@"<xs:schema xmlns:xs=""http://www.w3.org/2001/XMLSchema"">
<xs:element name=""root"">
<xs:complexType>
<xs:sequence>
<xs:element name=""HostName"" type=""xs:string"" />
<xs:element name=""AdminUserName"" type=""xs:string"" />
<xs:element name=""AdminPassword"" type=""xs:string"" />
<xs:element name=""PlaceNumber"" type=""xs:positiveInteger"" />
</xs:sequence>
</xs:complexType>
</xs:element></xs:schema>"
如果我向字符串 Parameter 添加更多元素。如何在运行时生成 Schema?