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

SentinelGetMasterAddrByName() public method

public SentinelGetMasterAddrByName ( string masterName ) : List
masterName string
return List
        public List<string> SentinelGetMasterAddrByName(string masterName)
        {
            var args = new List<byte[]>
            {
                Commands.Sentinel,
                Commands.GetMasterAddrByName,
                masterName.ToUtf8Bytes(),
            };
            return SendExpectMultiData(args.ToArray()).ToStringList();
        }
RedisNativeClient