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

SentinelSlaves() public method

public SentinelSlaves ( string masterName ) : string>>.List
masterName string
return string>>.List
        public List<Dictionary<string, string>> SentinelSlaves(string masterName)
        {
            var args = new List<byte[]>
            {
                Commands.Sentinel,
                Commands.Slaves,
                masterName.ToUtf8Bytes(),
            };
            return SendExpectStringDictionaryList(args.ToArray());
        }
RedisNativeClient