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

ZRemRangeByRank() public method

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

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