0
[OperationContract]
[WebInvoke(UriTemplate = "s={s}", Method = "POST")]
string EchoWithPost(string s);

を使用してこのメ​​ソッド (WCF サービス) を使用しようとしていますWebRequest

WebRequest request1 = WebRequest.Create("http://MyIP/Host");
request1.Method = "POST";
request1.ContentType = "application/x-www-form-urlencoded";
string postData1 = "s=TestString";

URL でデータ ( ) を渡したくありません。s=TestString私がやろうとしているのは、メッセージ本文でデータを渡すことです。

4

1 に答える 1