.net WCF web.config文件的内部工作

.net WCF web.config文件的内部工作,.net,wcf,.net,Wcf,正在查找WCF web.config文件内部工作原理的说明。特别是这些章节。 我知道它们的意思,但我真正想要的是对内部运作的解释。例如 <system.serviceModel> <serviceHostingEnvironment multipleSiteBindingsEnabled="true" /> <protocolMapping> <add scheme="http" binding="wsHttpBinding" bindingConf

正在查找WCF web.config文件内部工作原理的说明。特别是这些章节。 我知道它们的意思,但我真正想要的是对内部运作的解释。例如
<system.serviceModel>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
<protocolMapping>
  <add scheme="http" binding="wsHttpBinding" bindingConfiguration="" />
</protocolMapping>

<services>
  <service behaviorConfiguration="DevelopmentBehavior" name="MyCo.Administration.AdminSvcs.AdministrationSvc">
    <endpoint address="" binding="wsHttpBinding" contract="MyCo.Administration.AdminSvcs.IAdministrationSvc" bindingConfiguration="DevelopmentBinding" />
    <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
  </service>
</services>

<behaviors>
  <serviceBehaviors>
    <behavior name="ProductionBehavior">
      <serviceMetadata httpGetEnabled="false" />
      <serviceDebug includeExceptionDetailInFaults="false" />
    </behavior>
    <behavior name="DevelopmentBehavior">
      <serviceMetadata httpGetEnabled="true" />
      <serviceDebug includeExceptionDetailInFaults="true" />
    </behavior>
  </serviceBehaviors>
</behaviors>

<bindings>
  <wsHttpBinding>
    <binding name="DevelopmentBinding">
      <security mode="None">
        <transport clientCredentialType="None" />
        <message establishSecurityContext="false" />
      </security> 
    </binding>
  </wsHttpBinding>
</bindings>


你看过官方文件了吗?在


因为这个问题不是很具体,让您了解一般情况,除非您有更多问题,否则官方文档是我能做的最好的了?

。我正在寻找一些更具描述性的东西,但目前还有效。