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

ZRemRangeByLex() public method

public ZRemRangeByLex ( string setId, string min, string max ) : long
setId string
min string
max string
return long
        public long ZRemRangeByLex(string setId, string min, string max)
        {
            if (setId == null)
                throw new ArgumentNullException("setId");

            return SendExpectLong(
                Commands.ZRemRangeByLex, setId.ToUtf8Bytes(), min.ToUtf8Bytes(), max.ToUtf8Bytes());
        }
RedisNativeClient