WCF Cookie处理

时间:2021-06-12 02:41:01

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

这里上一图

WCF Cookie处理

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

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

cookie读取

             var requestProperties = OperationContext.Current.IncomingMessageProperties;

             var hrp = requestProperties[HttpRequestMessageProperty.Name] as HttpRequestMessageProperty;

             var cookie = hrp.Headers[System.Net.HttpRequestHeader.Cookie];

cookie写入

             var responseProperties = OperationContext.Current.OutgoingMessageProperties;

             var httpResponseProperties = new HttpResponseMessageProperty();

             httpResponseProperties.Headers.Add(HttpResponseHeader.SetCookie, "name=yswenli");

             responseProperties.Add(HttpResponseMessageProperty.Name, httpResponseProperties);

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

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