从响应头C#中提取cookie信息

时间:2013-02-11 06:00:06

标签: c# cookies http-headers httpresponse httpwebresponse

我在响应标头中提供了一些信息。一种方法是为它提出一个正则表达式...还有另一种解决方法吗?

这是标题信息:

Headers = {Cneonction: close
Content-Length: 87
Content-Type: application/json;charset=utf-8
Date: Mon, 11 Feb 2013 05:51:37 GMT
Expires: Thu, 01-Jan-1970 00:00:00 GMT
Set-Cookie: FUTWebPhishing-123456789=123456aavbc12334564856;Path=/;Domain=.ea.com;Expires=Wed, 1...

我想要FUTWebPhishing的价值......任何想法?

2 个答案:

答案 0 :(得分:2)

您可以将String.Split(';')设置为Set-Cookie标头的值,然后找到包含“FUTWebPhishing”的元素。

答案 1 :(得分:0)

有关此问题的讨论

检查出来:

GetCookie extract information to a String