摘要:
服务三要素ABCA:Address 在哪里 (包含传输方式的信息)B:Binding 怎么实现(与地址的传输方式要匹配)C:Contract做什么(服务契约)namespace WCFServiceDemo{ [ServiceContract] public interface IHelloService { [OperationContract] DateTime GetDateTime(); [OperationContract] DataTable GetUserInfo(); }}继承接口 class Hel... 阅读全文
摘要:
定义服务契约-创建宿主程序-创建客户端程序访问服务namespace HelloService{ /// /// 服务契约 /// [ServiceContract] public interface IHelloService { /// /// 服务操作 /// /// /// [OperationContract] string SayHello(string name); }}类HelloService继承接口IHelloSe... 阅读全文