Ext.Net.Cookies.GetCookie C# (CSharp) Method

GetCookie() public static method

Retrieves cookie that are accessible by the current page. If a cookie does not exist, get() returns null.
public static GetCookie ( string name ) : System.Web.HttpCookie
name string The name of the cookie to get
return System.Web.HttpCookie
        public static HttpCookie GetCookie(string name)
        {
            return HttpContext.Current.Request.Cookies[name];
        }