WCF开发步骤

 


在这里我就用一个据于一个简单的场景:服务端为客服端提供获取客户信息的一个接口读取客户信息,来完成WCF开发入门的六个步骤。

1.定义WCF服务契约

A.项目引用节点右键添加System.ServiceModel引用。

B.在代码文件里,添加以下命名空间的引用

using System.ServiceModel;

using System;

C.新建一个命为ICustomerService 接口,并添加一个获取客户信息的方法定义名为CustomerInfomation,返回字符串类型的客户信息。

D.为接口ICustomerService添加ServiceContract的属性修饰使它成为WCF服务中公开的接口。 

E.为方法CustomerInfomation添加OperationContract的属性修饰使它成为WCF服务公开接口中公开的成员。

F.代码:

 1 using System;
 2 
 3 using System.ServiceModel;
 4 
 5 namespace ConWCF
 6 
 7 {   [ServiceContract(Namespace = "http://Microsoft.ServiceModel.Samples")]
 8 
 9     public interface CustomerService
10 
11     { 
12 
13         [OperationContract]
14 
15         String CustomerInformation();
16 
17     }
18 
19 }
20 

2.实现WCF服务契约

实现WCF服务契约很简单,就是实现上一步聚定义的WCF服务契约定义的接口就可以。下面看代码

 1 using System;
 2 
 3 using System.ServiceModel;
 4 
 5 namespace ConWCF
 6 
 7 {   [ServiceContract(Namespace = "http://Microsoft.ServiceModel.Samples")]
 8 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

sust2012

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值