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

LLen() public method

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

            return SendExpectLong(Commands.LLen, listId.ToUtf8Bytes());
        }
RedisNativeClient