码迷,mamicode.com
首页 > 移动开发 > 详细

read appSettings in configuration file by XElement with xmlns

时间:2018-12-04 18:54:07      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:element   elements   error   tin   ide   read   ret   arp   pre   

 

https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/concepts/linq/how-to-write-queries-on-xml-in-namespaces

public static int GetProgramId(string filePath)
        {
            int programId = 0;
            var element = XElement.Load(filePath);

            XNamespace xNamespace = element.GetDefaultNamespace();

            XName tempXName1 = xNamespace + "appSettings";
            var temp = element.Element(tempXName1);

            XName tempXName2 = xNamespace + "add";
            var targetElement = temp?.Elements(tempXName2)
                .FirstOrDefault(x => x.Attribute("key")?.Value == "ProgramID");
            if (targetElement == null)
            {
                LogUtil.CreateLog(LogLevel.Error, $"Can not find ProgramID in appSettings section in {filePath}");
            }
            else
            {
                var valueAttribute = targetElement.Attribute("value");
                if (valueAttribute == null)
                {
                    LogUtil.CreateLog(LogLevel.Error,
                        $"Can not find value attribute in appSettings section with key = ProgramID in {filePath}");
                }
                else
                {
                    programId = Convert.ToInt32(valueAttribute.Value);
                }
            }

            return programId;
        }

 

read appSettings in configuration file by XElement with xmlns

标签:element   elements   error   tin   ide   read   ret   arp   pre   

原文地址:https://www.cnblogs.com/chucklu/p/10065590.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!