我是服务堆栈的新手。 只需创建一个非常示例的演示版本。
我在发布数据时已经传递了类的Object。 我的问题是服务堆栈在发布请求时如何处理对象.i.e。 JSON / XML等。
JsonServiceClient client = new JsonServiceClient("http://localhost/RestIntro");
Customer c = new Customer();
c.Name = "Amit patel";
c.Age = 30;
c.Email = "aa";
var res = client.Post<Customer>("/customers", c);
这个c(客户对象)在传输数据时如何处理?
答案 0 :(得分:0)
正如您所看到的,该服务仅使用serialises BclJsonDataContractSerializer客户对象,使用datacontractjsonserializer,并将其发布为json。