public void LoadCookie(string name)
        {
            var cookie = StormContext.GetCookie(name);

            if (cookie != null)
            {
                WasEncrypted = IsEncrypted(cookie.Value);
                var data = Decrypt(cookie);
                Log.LogEntry.Categories(CategoryFlags.Debug).Message("Loaded cookie {0}: {1}", name, data).WriteVerbose();
            }
            StormContext.SetItem(name, this);
            originalCookieValue = ToString();
        }