ServiceStack.Redis.RedisNativeClient.Exists C# (CSharp) Method

Exists() public method

public Exists ( string key ) : long
key string
return long
        public long Exists(string key)
        {
            if (key == null)
                throw new ArgumentNullException("key");

            return SendExpectLong(Commands.Exists, key.ToUtf8Bytes());
        }
RedisNativeClient