在wcf rest服务中创建我的自定义Xml响应

时间:2016-10-07 19:45:26

标签: xml rest wcf c#-4.0

我想在wcf rest服务中更改xml响应格式 例如

public class Person
{
    public string Name {get; set; }
    public string LastName {get; set; }
    public List<Item> items {get; set; }  
}

public class Item
{
   public string Key { get; set; } 
   public string Vaule { get; set; }
}

必须以这种方式显示课程

<Person Name="Jhon" LastName="Doe">
       <Item Key="Color" Value="White"/>
</Person>

0 个答案:

没有答案