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

SentinelSentinels() public method

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