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

LIndex() public method

public LIndex ( string listId, int listIndex ) : byte[]
listId string
listIndex int
return byte[]
        public byte[] LIndex(string listId, int listIndex)
        {
            if (listId == null)
                throw new ArgumentNullException("listId");

            return SendExpectData(Commands.LIndex, listId.ToUtf8Bytes(), listIndex.ToUtf8Bytes());
        }
RedisNativeClient