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

SScan() public method

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

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