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

SentinelMaster() public method

public SentinelMaster ( string masterName ) : string>.Dictionary
masterName string
return string>.Dictionary
        public Dictionary<string, string> SentinelMaster(string masterName)
        {
            var args = new List<byte[]>
            {
                Commands.Sentinel,
                Commands.Master,
                masterName.ToUtf8Bytes(),
            };
            var results = SendExpectComplexResponse(args.ToArray());
            return ToDictionary(results);
        }
RedisNativeClient