Пример #1
0
 public MrConnectServiceConnectionConfig(
     JsonAppConfigBase config,
     string serverNamePath,
     string hostPath,
     string portPath,
     string certNamePath,
     string pingPath) :
     base(config, serverNamePath, hostPath, portPath, certNamePath, pingPath)
 {
 }
Пример #2
0
        public ServiceConnectionConfig(
            JsonAppConfigBase config,
            string serverNamePath,
            string hostPath,
            string portPath,
            string certNamePath,
            string pingRoutePath)
        {
            _config = config;

            ServerNamePath = serverNamePath;
            HostPath       = hostPath;
            PortPath       = portPath;
            CertNamePath   = certNamePath;
            PingRoutePath  = pingRoutePath;
        }