我在 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 标头中设置?