Ejemplo n.º 1
0
            public IDefineRouting At(string httpListenerName, FrontendIpConfiguration frontendIp, FrontendPort frontendPort)
            {
                var httpListener = new HttpListener(httpListenerName, frontendIp, frontendPort);

                _applicationGateway.Listeners.Add(httpListener);
                return(new DefineApplicationGatewayRouting(_applicationGateway, httpListener));
            }
Ejemplo n.º 2
0
 public HttpsListener(string name, FrontendIpConfiguration ip, FrontendPort port) : base(name, ip, port)
 {
 }
Ejemplo n.º 3
0
 protected Listener(string name, FrontendIpConfiguration ip, FrontendPort port)
 {
     Name = name;
     Ip   = ip;
     Port = port;
 }