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: Close
HTTPヘッダーに設定したい。ただし、次のコードは Windows ストア アプリでエラーが発生します。
h.KeepAliveEnabled = false;
Message Inspector でカスタム HTTP ヘッダーを追加しようとしましたが、うまくいきません。Connection: Close
HTTPヘッダーに設定する方法はありますか?