1

Windows Store Apps で次のプログラムを作成しました。

CustomBinding b = new CustomBinding() ;
TextMessageEncodingBindingElement t = new TextMessageEncodingBindingElement();
HttpTransportBindingElement h = new HttpTransportBindingElement();          
b.Elements.Add(t);
b.Elements.Add(h);

MyService client = new MyService(b, new EndpointAddress("http://localhost:8080/"));

var request = ...;
var response = client.Service000(request);

Connection: CloseHTTPヘッダーに設定したい。ただし、次のコードは Windows ストア アプリでエラーが発生します。

h.KeepAliveEnabled = false;

Message Inspector でカスタム HTTP ヘッダーを追加しようとしましたが、うまくいきません。Connection: CloseHTTPヘッダーに設定する方法はありますか?

4

0 に答える 0