我在Windows应用商店应用中编写了以下程序。
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);
我想在HTTP标头中设置Connection: Close
。
但是,在Windows应用商店应用中出现以下代码错误。
h.KeepAliveEnabled = false;
我尝试在Message Inspector中添加自定义HTTP标头,但它也不起作用。
有没有办法在HTTP标头中设置Connection: Close
?