WCF开发框架中有很多功能值得我们去深入的研究。比如状态保存等等。在这里我们就为大家详细介绍有关WCF状态保存的一些相关知识。#t#
WCF状态保存分为两步:
(1) 使用SessionMode 来使Session有效化
(2)ServiceBehavior 里面利用参数InstanceContextMode设定到底使用哪一种Session方式
- [ServiceBehavior(InstanceContextMode
InstanceContextMode=InstanceContextMode.PerCall)]- public class CalculatorService:ICalculator
- {
- private double _result;
- public double Result
- {
- get { return _result; }
- set { _result = value; }
- }
- public void Adds(double x)
- {
- Console.WriteLine("The Add Method is
invoked and The current SessionID is
{0} ",OperationContext.Current.SessionId);- this._result += x;
- }
- public double GetResult()
- {
- Console.WriteLine("The GetResult Method
is invoked and The current SessionID is
{0} ", OperationContext.Current.SessionId);- return this._result;
- }
- public CalculatorService()
- {
- Console.WriteLine("CalculatorService
object has been Created ");- }
- ~CalculatorService()
- {
- Console.WriteLine("CalculatorService
object has been destoried ");- }
- }
WCF状态保存SessionMode 有三种值:
(1)Allowed 默认选值,允许但不强制使用Session
(2)Required 强制使用Session
(3)NotAllowed 不允许使用Session
WCF状态保存InstanceContextMode 有三种值:
(1) Percall 为user的每一次调用生成一个SessionID
生命周期:调用开始 ---->调用结束,这种情况和不使用Session是一样的
(2) PerSession 为每个用户生成一个SessionID
生命周期:客户端代理生成--->客户端代理关闭 和最原先的Session是一样的
(3) Seigle 生成唯一的SessionID,所有的用户共享 从host创建---->host 关闭,和Application 一样
标题名称:两步解决WCF状态保存
标题路径:http://www.csdahua.cn/qtweb/news26/461376.html
网站建设、网络推广公司-快上网,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 快上网