WCF中的“连接:关闭”(Windows应用商店应用)

时间:2012-11-19 14:30:32

标签: wcf windows-8

我在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

0 个答案:

没有答案