ユーザーを更新するメソッド(PUT)を作成したWCFでRESTサービスを作成しました。このメソッドでは、複数の本体パラメータを渡す必要があります
[WebInvoke(Method = "PUT", UriTemplate = "users/user",BodyStyle=WebMessageBodyStyle.WrappedRequest)]
[OperationContract]
public bool UpdateUserAccount(User user,int friendUserID)
{
//do something
return restult;
}
パラメータが1つしかない場合は、ユーザークラスの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)値を渡す方法は? 誰でも私を助けることができますか?