Exemple #1
0
        internal TrafficManagerMonitor(XElement xml)
        {
            var ns = XmlNamespaces.WindowsAzure;

            xml.HydrateObject(ns, this);
            HttpOptions = new TrafficManagerHttpOptions(xml.Element(ns + "HttpOptions"));
        }
 internal TrafficManagerMonitor(XElement xml)
 {
     var ns = XmlNamespaces.WindowsAzure;
     xml.HydrateObject(ns, this);
     HttpOptions = new TrafficManagerHttpOptions(xml.Element(ns + "HttpOptions"));
 }
 public TrafficManagerMonitor(int port, TrafficManagerHttpOptions httpOptions) : this()
 {
     Port = port;
     HttpOptions = httpOptions;
 }
Exemple #4
0
 public TrafficManagerMonitor(int port, TrafficManagerHttpOptions httpOptions) : this()
 {
     Port        = port;
     HttpOptions = httpOptions;
 }