Adf.Base.State.NullStateProvider.Has C# (CSharp) Method

Has() public method

Returns a value indicating that no value exists in the empty state 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 being checked.
return bool
        public bool Has(object o)
        {
            return false;
        }

Same methods

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