想要运用好一门技术就要了解它的基本的特性,比如类的特性,我们就来分析一下WCF ServiceContract特性。Windows通信基础(Windows Communication Foundation,WCF)是基于Windows平台下开发和部署服务的软件开发包(Software Development Kit,SDK)。
#T#WCF为服务提供了运行时环境(Runtime Environment),使得开发者能够将CLR类型公开为服务,又能够以CLR类型的方式使用服务。理论上讲,创建服务并不一定需要WCF,但实际上,使用WCF却可以使得创建服务的任务事半功倍。WCF是微软对一系列产业标准定义的实现,包括服务交互、类型转换、封送(Marshaling)以及各种协议的管理。正因为如此,WCF才能够提供服务之间的互操作性。WCF ServiceContract特性允许应用到接口或类上。当接口应用了Service-Contract特性后,需要定义类实现该接口。总的来讲,我们可以使用C#或VB去实现接口,服务类的代码无需修改,自然而然成为一个WCF服务:
- [ServiceContract]
- interface IMyContract
- {
- [OperationContract]
- string MyMethod();
- }
- class MyService : IMyContract
- {
- public string MyMethod()
- {
- return "Hello WCF";
- }
- }
我们可以隐式或显式实现接口:
- class MyService : IMyContract
- {
- string IMyContract.MyMethod()
- {
- return "Hello WCF";
- }
- }
一个单独的类通过继承和实现多个标记了WCF ServiceContract特性的接口,可以支持多个契约。
- [ServiceContract]
- interface IMyContract
- {
- [OperationContract]
- string MyMethod();
- }
- [ServiceContract]
- interface IMyOtherContract
- {
- [OperationContract]
- void MyOtherMethod();
- }
- class MyService : IMyContract,IMyOtherContract
- {
- public string MyMethod()
- {...}
- public void MyOtherMethod()
- {...}
- }
然而,服务类还有一些实现上的约束。我们要避免使用带参构造函数,因为WCF只能使用默认构造函数。同样,虽然类可以使用内部(internal)的属性、索引器以及静态成员,但WCF客户端却无法访问它们。