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

ZScan() public method

public ZScan ( string setId, ulong cursor, int count = 10, string match = null ) : ScanResult
setId string
cursor ulong
count int
match string
return ScanResult
        public ScanResult ZScan(string setId, ulong cursor, int count = 10, string match = null)
        {
            if (match == null)
            {
                return SendExpectScanResult(Commands.ZScan, setId.ToUtf8Bytes(), cursor.ToUtf8Bytes(),
                                            Commands.Count, count.ToUtf8Bytes());
            }

            return SendExpectScanResult(Commands.ZScan, setId.ToUtf8Bytes(), cursor.ToUtf8Bytes(),
                                        Commands.Match, match.ToUtf8Bytes(),
                                        Commands.Count, count.ToUtf8Bytes());
        }
RedisNativeClient