コード例 #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));
            }
コード例 #2
0
 public HttpsListener(string name, FrontendIpConfiguration ip, FrontendPort port) : base(name, ip, port)
 {
 }
コード例 #3
0
 protected Listener(string name, FrontendIpConfiguration ip, FrontendPort port)
 {
     Name = name;
     Ip   = ip;
     Port = port;
 }