我正在使用 asp.net mvc4 web api。我有一些由 Devart Entity Developer 生成的类,它们具有以下结构:
[Serializable]
[XmlRoot("Test")]
[JsonObject(MemberSerialization.OptIn)]
public class Test
{
[XmlAttribute("property1")]
[JsonProperty("property1")]
public int Property1
{
get { return _Property1; }
set
{
if (_Property1 != value)
{
_Property1 = value;
}
}
}
private int _Property1;
[XmlAttribute("property2")]
[JsonProperty("property2")]
public int Property2
{
get { return _Property2; }
set
{
if (_Property2 != value)
{
_Property2 = value;
}
}
}
private int _Property2;
}
我有此类的测试控制器:
public class TestController : ApiController
{
private List<Test> _tests = new List<Test>() ;
public TestController()
{
_tests.Add(new Test() { Property1 = 1, Property2 = 2 });
_tests.Add(new Test() { Property1 = 3, Property2 = 4 });
}
public IEnumerable<Test> Get()
{
return _tests;
}
}
当我尝试以 JSON 格式获取测试值时,它会返回正确的响应:
"[{"property1":1,"property2":2},{"property1":3,"property2":4}]"
但是当我使用 XML 格式时,它序列化的不是公共(Property1
)而是私有属性(即_Property1
)和响应看起来像:
<ArrayOfTest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TestProject.Models.Data">
<Test>
<_Property1>1</_Property1>
<_Property2>2</_Property2>
</Test>
<Test>
<_Property1>3</_Property1>
<_Property2>4</_Property2>
</Test>
</ArrayOfTest>
UPD:我尝试将 [NonSerialized] 和 [XmlIgnore] 添加到私有属性,但是这样 xml 输出为空,只是:
<ArrayOfTest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PeopleAirAPI.Models.Data">
<Test/>
<Test/>
</ArrayOfTest>
问题是如何强制 xml 序列化器序列化公共属性。隐藏(忽略)私有属性不是问题。我完全不明白为什么它会序列化私有属性,我在 msdn 文档和其他地方读过:
XML 序列化只序列化公共字段和属性。
为什么在这种情况下它的行为与文档相反?