我已经添加了一个WCF服务作为参考。我更改了服务的地址,这样它就不会出现在配置中,我试着做一个快捷方式,这样我就不会每次都写同样的东西。你有什么建议吗?
internal class TestService
{
public static TestServisClient GetServiceClient
{
get
{
var binding = new BasicHttpBinding();
var endpoind = new EndpointAddress("http://localhost:64733/TestService.svc?wsdl");
return new TestServisClient(binding, endpoind);
}
}
}
testservice.getserviceclient.getdatatables();
这样使用对吗?我是否应该再次调用它来关闭服务?
我想我必须这样做
using (TestServisClient client = new TestServisClient(
new BasicHttpBinding(), new EndpointAddress(url)))
{ ... }