我需要一些有关此代码的帮助,我对这种语言几乎是新手。我得到了(例如)这个 SOAP 输入:
<person xmlns="http://www.example.com/ws/">
<name>Elmer</name>
<sex>Male</sex>
<boxes>
<box>
<title>shoes</title>
<items>5</items>
</box>
<box>
<title>shirts</title>
<items>2</items>
</box>
<box>
<title>hats</title>
<items>4</items>
</box>
</boxes>
</person >
我有一个处理参数并存储在数据库中的方法。但我的问题是,我如何处理“盒子”的多个值?
举例:
public string person(string name, string sex, ??? boxes)
{
foreach(??? in boxes)
{
boxes.title???
boxes.items???
}
string response = "ok";
return response;
}
我怎样才能得到那个值?
这是一个帖子。肥皂就像方法中的参数(或参数)一样。我不能像文本一样阅读它然后转换为 XML!