AgileWallaby.Ehcache.EhcacheServerDictionary.Contains C# (CSharp) Method

Contains() public method

public Contains ( object keyObj ) : bool
keyObj object
return bool
        public bool Contains(object keyObj)
        {
            var keyStr = RejectKeyIfNotString(keyObj);
            return serverRequest.Contains(cache, keyStr);
        }