bluesky_lcj

导航

web.config节点中section中type的类型

type="Fully qualified class name, assembly file name, version, culture, public key token"
example:
type="MyConfigSectionHandler.MyHandler,MyCustomConfigurationHandler,Version=1.0.0.0,Culture=neutral,PublicKeyToken=null"
<configSections>
    <section name="Configuration" type="Test.Common.Framework.Configuration, Test.Common"/>
</configSections>
<section 
   name="section name"
   type="configuration section handler class, assembly file name, version, culture, public key token"
   allowDefinition= "Everywhere|MachineOnly|MachineToApplication|MachineToWebRoot" 
   allowLocation="True|False" 
   restartOnExternalChanges="True|False" 
/>

posted on 2009-08-24 14:39  bluesky_lcj  阅读(327)  评论(0编辑  收藏  举报