8

我在 WCF 中编写了一个 REST 服务,其中我创建了一个方法(PUT)来更新用户。对于这种方法,我需要传递多个主体参数

[WebInvoke(Method = "PUT", UriTemplate = "users/user",BodyStyle=WebMessageBodyStyle.WrappedRequest)]
[OperationContract]
public bool UpdateUserAccount(User user,int friendUserID)
{
    //do something
    return restult;
}

虽然如果只有一个参数,我可以传递用户类的 XML 实体。如下:

var myRequest = (HttpWebRequest)WebRequest.Create(serviceUrl);
myRequest.Method = "PUT";
myRequest.ContentType = "application/xml";
byte[] data = Encoding.UTF8.GetBytes(postData);
myRequest.ContentLength = data.Length;
//add the data to be posted in the request stream
var requestStream = myRequest.GetRequestStream();
requestStream.Write(data, 0, data.Length);
requestStream.Close();

但是如何传递另一个参数(friendUserID)值?谁能帮我?

4

1 回答 1

12

对于除 GET 之外的所有方法类型,只能将一个参数作为数据项发送。所以要么将参数移动到查询字符串

[WebInvoke(Method = "PUT", UriTemplate = "users/user/{friendUserID}",BodyStyle=WebMessageBodyStyle.WrappedRequest)]
[OperationContract]
public bool UpdateUserAccount(User user, int friendUserID)
{
    //do something
    return restult;
}

或将参数添加为请求数据中的节点

<UpdateUserAccount xmlns="http://tempuri.org/">
    <User>
        ...
    </User>
    <friendUserID>12345</friendUserID>
</UUpdateUserAccount>
于 2011-03-12T07:57:10.410 回答