标签: asp.net asp.net-web-api
我正在使用ASP.NET Web API。
我的模特是
public class DataModel { public int Id {get;set;} [XmlText] public string RowList { get; set; } }
RowList属性是xml。
如下所示的回复:
The image of the response xml
现在结果是xml格式,但响应结果已编码。 在将结果响应给客户端之前,我怎么能以正确的格式解码RowList。
感谢。