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

Has() public method

Returns a value indicating whether a value exists in the Session corresponding to the specified key object.
public Has ( object o ) : bool
o object The key object for which the corresponding value esists or not, is to check.
return bool
        public bool Has(object o)
        {
            return (this[o] != null);
        }

Same methods

WebStateProvider::Has ( object o, string key ) : bool
WebStateProvider::Has ( string key ) : bool
WebStateProvider