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

SPop() public method

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

            return SendExpectData(Commands.SPop, setId.ToUtf8Bytes());
        }

Same methods

RedisNativeClient::SPop ( string setId, int count ) : byte[][]
RedisNativeClient