Ejemplo n.º 1
0
        internal TrafficManagerMonitor(XElement xml)
        {
            var ns = XmlNamespaces.WindowsAzure;

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