public static async Task <Curent> GetCurent(string lokKey) { Curent curent = new Curent(); string url = BaseUrl + String.Format(CurrentConditions, lokKey, ApiKey); using (HttpClient client = new HttpClient()) { var responce = await client.GetAsync(url); string json = await responce.Content.ReadAsStringAsync(); curent = JsonConvert.DeserializeObject <List <Curent> >(json)[0]; } return(curent); }
public static MyCanvas LoadProject(string filename, TextBox a, TextBox b, TextBox c) { MyCanvas FirstElement = null; MyCanvas Curent = null; MyCanvas PREVIOUS = null; XmlDocument xDoc = new XmlDocument(); xDoc.Load(filename); // получим корневой элемент XmlElement xRoot = xDoc.DocumentElement; // обход всех узлов в корневом элементе if (xRoot.Attributes.Count > 0) { a.Text = xRoot.Attributes.GetNamedItem("EXP").Value; b.Text = xRoot.Attributes.GetNamedItem("TIME").Value; c.Text = xRoot.Attributes.GetNamedItem("KOEF").Value; } foreach (XmlNode xnode in xRoot) { // получаем атрибут name if (xnode.Attributes.Count > 0) { XmlNode attr = xnode.Attributes.GetNamedItem("ELTYPE"); if (attr.Value == "EMPTY") { Curent = new MyCanvas(); } else if (attr.Value == "PLAIN") { Curent = new Plain(); } else if (attr.Value == "LOADED") { Curent = new Loaded(); loadElement(xnode, Curent); } else if (attr.Value == "UNLOADED") { Curent = new Unloaded(); loadElement(xnode, Curent); } else if (attr.Value == "SLIDINGLOAD") { Curent = new SlidingLoaded(); loadElement(xnode, Curent); } else if (attr.Value == "SLIDINGUNLOAD") { Curent = new SlidingUnLoaded(); loadElement(xnode, Curent); } else if (attr.Value == "MAJOR") { Curent = new MajorConnect(); loadElement(xnode, Curent); } else if (attr.Value == "BRIDGE") { Curent = new BridgeConnect(); loadElement(xnode, Curent); } else if (attr.Value == "BDCGLR") { Curent = new BackupDeviceControlGroupsLR(); loadElement(xnode, Curent); } else if (attr.Value == "SERIAL") { Curent = new SerialConnect(); loadElement(xnode, Curent); } else if (attr.Value == "BACKUP") { Curent = new BackupControlType2(); loadElement(xnode, Curent); } else if (attr.Value == "RMR") { Curent = new ReservManageReplacing(); loadElement(xnode, Curent); } else if (attr.Value == "LIST_") { Curent = new List_(null); loadList(xnode, Curent); } Curent.Draw(); Canvas.SetLeft(Curent, Convert.ToDouble(xnode.Attributes.GetNamedItem("X").Value)); Canvas.SetTop(Curent, Convert.ToDouble(xnode.Attributes.GetNamedItem("Y").Value)); Curent.lambda = Convert.ToDouble(xnode.Attributes.GetNamedItem("LAMBDA").Value); Curent.lambda_1 = Convert.ToDouble(xnode.Attributes.GetNamedItem("LAMBDA_1").Value); Curent.ItemsAmount = Convert.ToInt32(xnode.Attributes.GetNamedItem("ITEMS").Value); Curent.ItemsAmount_1 = Convert.ToInt32(xnode.Attributes.GetNamedItem("ITEMS_1").Value); } if (FirstElement == null) { FirstElement = Curent; } Curent.PREVIOUS = PREVIOUS; if (PREVIOUS != null) { PREVIOUS.NEXT = Curent; } PREVIOUS = Curent; Curent = Curent.NEXT; } return(FirstElement); }
public static void loadElement(XmlNode node, MyCanvas Element) { MyCanvas Curent = null; foreach (XmlNode xnode in node) { // получаем атрибут name if (xnode.Attributes.Count > 0) { XmlNode attr = xnode.Attributes.GetNamedItem("ELTYPE"); if (attr.Value == "EMPTY") { Curent = new MyCanvas(); } else if (attr.Value == "PLAIN") { Curent = new Plain(); } else if (attr.Value == "LOADED") { Curent = new Loaded(); loadElement(xnode, Curent); } else if (attr.Value == "UNLOADED") { Curent = new Unloaded(); loadElement(xnode, Curent); } else if (attr.Value == "SLIDINGLOAD") { Curent = new SlidingLoaded(); loadElement(xnode, Curent); } else if (attr.Value == "SLIDINGUNLOAD") { Curent = new SlidingUnLoaded(); loadElement(xnode, Curent); } else if (attr.Value == "MAJOR") { Curent = new MajorConnect(); loadElement(xnode, Curent); } else if (attr.Value == "BRIDGE") { Curent = new BridgeConnect(); loadElement(xnode, Curent); } else if (attr.Value == "BDCGLR") { Curent = new BackupDeviceControlGroupsLR(); loadElement(xnode, Curent); } else if (attr.Value == "SERIAL") { Curent = new SerialConnect(); loadElement(xnode, Curent); } else if (attr.Value == "BACKUP") { Curent = new BackupControlType2(); loadElement(xnode, Curent); } else if (attr.Value == "RMR") { Curent = new ReservManageReplacing(); loadElement(xnode, Curent); } else if (attr.Value == "LIST_") { Curent = new List_(null); loadList(xnode, Curent); } Curent.Draw(); Canvas.SetLeft(Curent, Convert.ToDouble(xnode.Attributes.GetNamedItem("X").Value)); Canvas.SetTop(Curent, Convert.ToDouble(xnode.Attributes.GetNamedItem("Y").Value)); Curent.lambda = Convert.ToDouble(xnode.Attributes.GetNamedItem("LAMBDA").Value); Curent.lambda_1 = Convert.ToDouble(xnode.Attributes.GetNamedItem("LAMBDA_1").Value); Curent.ItemsAmount = Convert.ToInt32(xnode.Attributes.GetNamedItem("ITEMS").Value); Curent.ItemsAmount_1 = Convert.ToInt32(xnode.Attributes.GetNamedItem("ITEMS_1").Value); } if (Element.cont == 0) { Element.ContainEl = Curent; Element.cont++; } else if (Element.cont == 1) { Element.ContainEl_1 = Curent; Element.cont++; } else if (Element.cont == 2) { Element.ContainEl_2 = Curent; Element.cont++; } Curent = Curent.NEXT; } }