WCF Server Configuration in Web.config or App.config

    技术2022-05-11  95

    ms-help://MS.MSSDK.1033/MS.NETFX30SDK.1033/WCF_con/html/c9c8cd32-2c9d-4541-ad0d-16dff6bd2a00.htm

     


     

    <system.ServiceModel>

       <services>      <service>         <endpoint/>      </service>   </services>

       <bindings>   <!-- Specify one or more of the system-provided binding elements,    for example, <basicHttpBinding> -->    <!-- Alternatively, <customBinding> elements. -->      <binding>      <!-- For example, a <BasicHttpBinding> element. -->      </binding>   </bindings>

       <behaviors>   <!-- One or more of the system-provided or custom behavior elements. -->      <behavior>      <!-- For example, a <throttling> element. -->      </behavior>   </behaviors>

    </system.ServiceModel> 


    最新回复(0)