• web.config增加组和调用


    一,在web.config中的configuration节点下我们可以添加自己的配置,如下:

      <TestSectionGroup>
        <TestSection>
          <add key="Url" value="xxxxx" />
          <add key="Token" value="xxxxx" />
          <add key="Key" value="xxxxx" />
        </TestSection>
      </TestSectionGroup>

    二,但是刚开始这样添加是使用不了的,我们需要在configuration的configSections下注册

     <configSections>
         <sectionGroup name="TestSectionGroup">
          <section name="TestSection" type="System.Configuration.NameValueSectionHandler,System, Version=4.0.0.0, Culture=neutral,PublicKeyToken=b77a5c561934e089" />
        </sectionGroup> 
      </configSections>

    三,调用代码

            private static NameValueCollection TestSection = (NameValueCollection)ConfigurationManager.GetSection("TestSectionGroup/TestSection");
            private static string Url= TestSection ["Url"];
            private static string Token= TestSection ["Token"];
            private static string Key= TestSection ["Key"];
  • 相关阅读:
    树链剖分-bzoj1036
    POJ3489企鹅
    51nod 1130
    51nod-8-16
    51nod-8-15
    51nod 8-14
    51nod1582-n叉树
    51nod1574排列转换
    51nod1785数据流中的算法
    iOS开发--Swift 最近项目开发中遇到的一些小问题与解决方法
  • 原文地址:https://www.cnblogs.com/May-day/p/8554955.html
Copyright © 2020-2023  润新知