WCF 设计目标 :
1:生产效率 : 统一了现有的各种分布式技术
基于属性(Attribute)的开发
与VS的无缝集成
2:可交互性 : 广泛的支持WS-*系列通用规范
与现有的微软分布式技术相兼容
3:面向服务的开发 : 使得编写松散耦合的服务变得容易
服务的行为及属性(如通讯方式)可以通过配置来指定
最简单的WCF
[System.ServiceModel.ServiceContract]
interface IHelloService
{
[System.ServiceModel.OperationContract]
string Hello();
}
public class HelloService : IHelloService
{
public string Hello()
{
return "Hello";
}
}
时间: 2024-10-06 01:17:47