当前位置: 代码迷 >> Web Service >> 小弟我只是菜鸟,webservice中Schema是什么啊
  详细解决方案

小弟我只是菜鸟,webservice中Schema是什么啊

热度:276   发布时间:2016-05-02 03:03:06.0
我只是初学者,webservice中Schema是什么啊?
下面这种形式的Schema,应该怎么写代码啊?
<?xml   version= "1.0 "?>
<xs:schema   xmlns:xs= "http://www.w3.org/2001/XMLSchema ">
<xs:element   name= "PaymentConfirmRequest ">
<xs:complexType>
<xs:sequence>
<xs:element   name= "ID "   type= "xs:string "/>
<xs:element   name= "edit "   type= "xs:string "/>
<xs:element   name= "time "   type= "xs:string "/>
<xs:element   name= "tid "   type= "xs:string "/>
<xs:element   name= "UID "   type= "xs:string "/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>


------解决方案--------------------
去baidu搜一下就知道了,这不是一两句能说清楚的
------解决方案--------------------
public void PaymentConfirmRequest(string ID,string edit,string time,string tid,string UID)
{

}
  相关解决方案