C# Class Hank.BrowserParse.HttpCookieHelper

Cookie操作帮助类
ファイルを表示 Open project: hanksoft/KillJD

Public Methods

Method Description
CookieFormat ( string key, string value ) : string

格式化Cookie为标准格式

GetCookieList ( string cookie ) : List

根据字符生成Cookie列表

GetCookieValue ( string Key, string cookie ) : string

根据Key值得到Cookie值,Key不区分大小写

Method Details

CookieFormat() public static method

格式化Cookie为标准格式
public static CookieFormat ( string key, string value ) : string
key string Key值
value string Value值
return string

GetCookieList() public static method

根据字符生成Cookie列表
public static GetCookieList ( string cookie ) : List
cookie string Cookie字符串
return List

GetCookieValue() public static method

根据Key值得到Cookie值,Key不区分大小写
public static GetCookieValue ( string Key, string cookie ) : string
Key string key
cookie string 字符串Cookie
return string