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

LPop() public method

public LPop ( string listId ) : byte[]
listId string
return byte[]
        public byte[] LPop(string listId)
        {
            if (listId == null)
                throw new ArgumentNullException("listId");

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