码迷,mamicode.com
首页 > 其他好文 > 详细

WCF Cookie处理

时间:2017-08-02 16:27:28      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:blog   结果   tco   get   pre   bsp   .com   研究   current   

wcf操作cookie看似很简单,如果不对Wcf研究一把还是很难的,基本上无从下手。

这里上一图

技术分享

 

上面的结果,岂止是坑爹,简直就是坑爹!!!

 

废话不多说,直接上代码:

 

cookie读取

1             var requestProperties = OperationContext.Current.IncomingMessageProperties;
2 
3             var hrp = requestProperties[HttpRequestMessageProperty.Name] as HttpRequestMessageProperty;
4 
5             var cookie = hrp.Headers[System.Net.HttpRequestHeader.Cookie];

 

cookie写入

1             var responseProperties = OperationContext.Current.OutgoingMessageProperties;
2 
3             var httpResponseProperties = new HttpResponseMessageProperty();
4 
5             httpResponseProperties.Headers.Add(HttpResponseHeader.SetCookie, "name=yswenli");
6 
7             responseProperties.Add(HttpResponseMessageProperty.Name, httpResponseProperties);

 

原理就是wcf 的 restful 是用[webget]或[webinvoke]针对operation的绑定,所以要使用web相关的就可能到OperationContext 里面去找~

 

 

转载请注明本文地址:http://www.cnblogs.com/yswenli/p/7274549.html

WCF Cookie处理

标签:blog   结果   tco   get   pre   bsp   .com   研究   current   

原文地址:http://www.cnblogs.com/yswenli/p/7274549.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!