예제 #1
0
        public static System.Collections.Generic.Dictionary <int, string> GetAllProvinces()
        {
            System.Collections.Generic.Dictionary <int, string> dictionary = new System.Collections.Generic.Dictionary <int, string>();
            XmlDocument regionDocument = RegionHelper.GetRegionDocument();
            XmlNodeList xmlNodeList    = regionDocument.SelectNodes("//province");

            foreach (XmlNode xmlNode in xmlNodeList)
            {
                dictionary.Add(int.Parse(xmlNode.Attributes["id"].Value), xmlNode.Attributes["name"].Value);
            }
            return(dictionary);
        }
예제 #2
0
        private static System.Collections.Generic.Dictionary <int, string> GetChildList(string xpath)
        {
            System.Collections.Generic.Dictionary <int, string> dictionary = new System.Collections.Generic.Dictionary <int, string>();
            XmlDocument regionDocument = RegionHelper.GetRegionDocument();
            XmlNode     xmlNode        = regionDocument.SelectSingleNode(xpath);

            foreach (XmlNode xmlNode2 in xmlNode.ChildNodes)
            {
                dictionary.Add(int.Parse(xmlNode2.Attributes["id"].Value), xmlNode2.Attributes["name"].Value);
            }
            return(dictionary);
        }
예제 #3
0
        public static string GetAllChild(int currentRegionId)
        {
            string  text    = currentRegionId.ToString();
            XmlNode xmlNode = RegionHelper.FindNode(currentRegionId);

            if (xmlNode != null)
            {
                foreach (XmlNode xmlNode2 in xmlNode.ChildNodes)
                {
                    text = text + "," + xmlNode2.Attributes["id"].Value;
                }
            }
            return(text);
        }
예제 #4
0
        public static System.Collections.Generic.Dictionary <int, string> GetAllRegionIds(bool readRegion, bool readprovince, bool readcity, bool readcounty)
        {
            System.Collections.Generic.Dictionary <int, string> dictionary = new System.Collections.Generic.Dictionary <int, string>();
            XmlDocument regionDocument = RegionHelper.GetRegionDocument();
            XmlNode     xmlNode        = regionDocument.SelectSingleNode("root");

            foreach (XmlNode xmlNode2 in xmlNode.ChildNodes)
            {
                if (readRegion)
                {
                    dictionary.Add(int.Parse(xmlNode2.Attributes["id"].Value), xmlNode2.Attributes["name"].Value);
                }
                if (xmlNode2.ChildNodes.Count > 0)
                {
                    foreach (XmlNode xmlNode3 in xmlNode2.ChildNodes)
                    {
                        if (readprovince)
                        {
                            dictionary.Add(int.Parse(xmlNode3.Attributes["id"].Value), xmlNode3.Attributes["name"].Value);
                        }
                        if (xmlNode3.ChildNodes.Count > 0)
                        {
                            foreach (XmlNode xmlNode4 in xmlNode3.ChildNodes)
                            {
                                if (readcity)
                                {
                                    dictionary.Add(int.Parse(xmlNode4.Attributes["id"].Value), xmlNode4.Attributes["name"].Value);
                                }
                                if (xmlNode4.ChildNodes.Count > 0)
                                {
                                    foreach (XmlNode xmlNode5 in xmlNode4.ChildNodes)
                                    {
                                        if (readcounty)
                                        {
                                            dictionary.Add(int.Parse(xmlNode5.Attributes["id"].Value), xmlNode5.Attributes["name"].Value);
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
            return(dictionary);
        }
예제 #5
0
        public static int GetTopRegionId(int currentRegionId)
        {
            XmlNode xmlNode = RegionHelper.FindNode(currentRegionId);
            int     result;

            if (xmlNode == null)
            {
                result = 0;
            }
            else
            {
                int     num        = currentRegionId;
                XmlNode parentNode = xmlNode.ParentNode;
                while (parentNode.Name != "region")
                {
                    num        = int.Parse(parentNode.Attributes["id"].Value);
                    parentNode = parentNode.ParentNode;
                }
                result = num;
            }
            return(result);
        }
예제 #6
0
        public static string GetFullPath(int currentRegionId)
        {
            XmlNode xmlNode = RegionHelper.FindNode(currentRegionId);
            string  result;

            if (xmlNode == null)
            {
                result = string.Empty;
            }
            else
            {
                string  text       = xmlNode.Attributes["id"].Value;
                XmlNode parentNode = xmlNode.ParentNode;
                while (parentNode.Name != "region")
                {
                    text       = parentNode.Attributes["id"].Value + "," + text;
                    parentNode = parentNode.ParentNode;
                }
                result = text;
            }
            return(result);
        }
예제 #7
0
        private static XmlNode FindNode(int id)
        {
            string      arg            = id.ToString(System.Globalization.CultureInfo.InvariantCulture);
            string      xpath          = string.Format("//county[@id='{0}']", arg);
            XmlDocument regionDocument = RegionHelper.GetRegionDocument();
            XmlNode     xmlNode        = regionDocument.SelectSingleNode(xpath);
            XmlNode     result;

            if (xmlNode != null)
            {
                result = xmlNode;
            }
            else
            {
                xpath   = string.Format("//city[@id='{0}']", arg);
                xmlNode = regionDocument.SelectSingleNode(xpath);
                if (xmlNode != null)
                {
                    result = xmlNode;
                }
                else
                {
                    xpath   = string.Format("//province[@id='{0}']", arg);
                    xmlNode = regionDocument.SelectSingleNode(xpath);
                    if (xmlNode != null)
                    {
                        result = xmlNode;
                    }
                    else
                    {
                        result = null;
                    }
                }
            }
            return(result);
        }
예제 #8
0
 public static System.Collections.Generic.Dictionary <int, string> GetCountys(int cityId)
 {
     return(RegionHelper.GetChildList(string.Format("root/region/province/city[@id='{0}']", cityId.ToString(System.Globalization.CultureInfo.InvariantCulture))));
 }
예제 #9
0
 public static System.Collections.Generic.Dictionary <int, string> GetRegions()
 {
     return(RegionHelper.GetChildList("root"));
 }
예제 #10
0
 public static XmlNode GetRegion(int regionId)
 {
     return(RegionHelper.FindNode(regionId));
 }