如果请求不包含原始对象,我可以使用 GET 方法通过 http 参数设置我的请求对象吗?我可以使用 json 对 POST 方法执行此操作,但是否存在一些 GET 替代方法?
[DataContract]
[RestService("/foo")]
public class FooRequest
{
[DataMember]
public string Color1 { get; set; }
[DataMember]
public FooDto Dto { get; set; }
}
public class FooDto
{
public string Color2 { get; set;}
}
在此示例中设置了 Color1,但如何设置 Dto.color2?
http://server/fooservice/servicestack/foo?Color1=blue&Dto.Color2=red