Adf.Web.State.WebStateProvider.Remove C# (CSharp) Method

Remove() public method

Removes the value from the Session corresponding to the specified key object.
public Remove ( object o ) : void
o object The key object for which the corresponding value is to be removed.
return void
        public void Remove(object o)
        {
            if (o != null)
                HttpContext.Current.Session.Remove(o.ToString());
        }

Same methods

WebStateProvider::Remove ( string key ) : void
WebStateProvider