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

Type() public method

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

            return SendExpectCode(Commands.Type, key.ToUtf8Bytes());
        }
RedisNativeClient