WCF - xml响应中的相同名称标记

时间:2012-07-26 20:00:34

标签: xml wcf rest response

我是新手。 Plzz帮助我。 在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();

Service.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;
    }

parameter.cs中

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

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

2 个答案:

答案 0 :(得分:1)

解决了它

        [XmlElement("Choice")]

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

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

Thanx james。你很有帮助。

答案 1 :(得分:0)

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

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

然后你可以添加到列表

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

等...

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