AuthBridge.Web.Services.FederationContext.SetValue C# (CSharp) Method

SetValue() public method

public SetValue ( string key, string value ) : void
key string
value string
return void
        public void SetValue(string key, string value)
        {
            FederationCookie.Values[key] = value;
            HttpContext.Current.Response.Cookies.Set(FederationCookie);
        }