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" 
/>

你可能感兴趣的:(web.config节点中section中type的类型)