细节:
接口契约:
[OperationContract]
[WebGet(UriTemplate = "test")]
TestType TestOperation();
类型定义:
[System.Xml.Serialization.XmlRoot(ElementName = "Test", Namespace="http://test.net/", IsNullable=false)]
public partial class TestType {
实际结果:
<TestType xmlns=http://schemas.datacontract.org/2004/07/ …
预期结果:
<Test xmlns= http://test.net/ …
请指教。