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

ZRemRangeByScore() public method

public ZRemRangeByScore ( string setId, double fromScore, double toScore ) : long
setId string
fromScore double
toScore double
return long
        public long ZRemRangeByScore(string setId, double fromScore, double toScore)
        {
            if (setId == null)
                throw new ArgumentNullException("setId");

            return SendExpectLong(Commands.ZRemRangeByScore, setId.ToUtf8Bytes(),
                fromScore.ToFastUtf8Bytes(), toScore.ToFastUtf8Bytes());
        }

Same methods

RedisNativeClient::ZRemRangeByScore ( string setId, long fromScore, long toScore ) : long
RedisNativeClient