0

我是新手。请在这方面帮助我。在 WCF 休息应用程序中,我想要以下响应

<parameterList>    
        <parameter>        
            <Question> Occupation </Question> 

            <Choice> Student/Others </Choice>      
            <Choice> Retired/housewife </Choice>       
            <Choice> Salaried/SelfEmployed </Choice>        
            <Choice> Doctor/CA/Socially Important Person </Choice> 

        </parameter>    
</parameterList>

我想要 4 个具有不同内容的相同“选择”标签。我得到的只是最后一个“选择”标签。

IService.cs

[OperationContract]
[WebInvoke(Method = "GET",
ResponseFormat = WebMessageFormat.Xml,
BodyStyle = WebMessageBodyStyle.Wrapped,
UriTemplate = "/getQuestion")]
[return: MessageParameter(Name = "parameterList")]
List<parameter> getQuestion();

服务.svc.cs

public List<parameter> getQuestion()
    {
        List<parameter> lstParameter = new List<parameter>();
        parameter param = new parameter();
        param.Question = " Occupation ";
        param.Choice = " Student/Others ";
        param.Choice = " Retired/housewife ";
        param.Choice = " Salaried/SelfEmployed ";
        param.Choice = " Doctor/CA/Socially Important Person ";
        lstParameter.Add(param);
        return lstParameter;
    }

参数.cs

public class parameter
{
    public string Question
    {
        get{ } set{ }
    }

    public string Choice
    {
        get{ } set{ }
    }
}
4

2 回答 2

1

解决了

        [XmlElement("Choice")]

        public List<string> Choice
        {
            get { return aChoice; }
            set { aChoice = value; }
        }

只需在属性上方添加 [XmlElement("")] 即可重命名 Xml 元素。

谢谢詹姆斯。你很有帮助。

于 2012-08-07T07:38:26.187 回答
0

您继续使用新字符串覆盖 Choice。您的 Choice 属性必须是 List

   public List<string> Choice
        {
            get { return new List<string>();}
        }

然后你可以添加到列表中

param.Choice.add(" Occupation ");
param.Choice.add(" Retired/housewife ");

ETC....

之后,您必须遍历所有选择并将它们添加到您的 XML

于 2012-07-26T20:11:04.737 回答