我有一个这样的 WebInvoke 方法;
[OperationContract]
[WebInvoke(
Method = "POST",
UriTemplate = "/go",
BodyStyle = WebMessageBodyStyle.Bare,
RequestFormat = WebMessageFormat.Xml,
ResponseFormat = WebMessageFormat.Xml
)]
string go(string name);
我像这样发布数据;
System.Net.WebClient client = new System.Net.WebClient();
string reply = client.UploadString(
"http://localhost/HelloService/Service.svc/go",
"POST",
aString);
问题是如何在不使用这样的 uri 模板的情况下从go()方法中的已发布消息中获取数据;
UriTemplate = "/go({name})"
因为我要发送大量数据,无法在uri模板中发送