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

Clear() public static method

Removes a cookie with the provided name from the browser if found by setting its expiration date to sometime in the past.
public static Clear ( string name ) : void
name string The name of the cookie to remove
return void
        public static void Clear(string name)
        {
            new Cookies().Call("clear", name);
        }