﻿            /*WebClient wc = new WebClient();
            Stream st = wc.OpenRead("http://radiko.jp/station/");
            wc.Headers.Add("Referer", "http://radiko.jp/player/player.html");
            Encoding enc = Encoding.GetEncoding("UTF-8");
            StreamReader sr = new StreamReader(st, enc);
            XmlDocument doc = new XmlDocument();
            doc.Load(sr);
            sr.Close();
            st.Close();

            XmlNode node = doc.DocumentElement;
            if (node.Attributes.Count == 2)
            {
                label1.Text = "あなたのエリアは"
                    + node.Attributes[1].InnerText
                    + "[エリアコード:"
                    + node.Attributes[0].InnerText
                    + "]";
            }
            else
            {

            }
            this.Text = node.Attributes[0].InnerText;*/
            //XmlNodeList node = doc.GetElementsByTagName("stations");
            //XmlElement elm = doc.FirstChild.InnerText;
            //this.Text = doc.ParentNode.InnerText;