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

LPush() public method

public LPush ( string listId, byte value ) : long
listId string
value byte
return long
        public long LPush(string listId, byte[] value)
        {
            AssertListIdAndValue(listId, value);

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