0

I have a web.config :

<?xml version="1.0"?>
<configuration>
  <system.web>
    <authentication mode="Windows"/>
    <compilation debug="true" targetFramework="4.0" />
  </system.web>
  <system.serviceModel>
    <bindings>
      <customBinding>
        <binding name="InstantMessagingBinding" closeTimeout="00:10:00">
          <textMessageEncoding>
            <readerQuotas maxStringContentLength="200000" maxArrayLength="200000" />
          </textMessageEncoding>
          <httpTransport keepAliveEnabled="false" maxReceivedMessageSize="200000" authenticationScheme="Ntlm"/>
        </binding>
      </customBinding>
    </bindings>
    ...
  </system.serviceModel>
 <system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/>
  </system.webServer>  
</configuration>

I want my service to read the closeTimeOut from this file. I know how to read from the AppSetting section but I don't know how to do it here.

4

2 に答える 2

0

この質問を参照してください: ConfigurationManager を使用して System.ServiceModel 構成セクションを読み込む

于 2013-03-07T10:11:35.353 に答える
0

Session.Timeout を使用して、タイムアウト値を知ることができます。

次のリンクを見てください。理解に役立ちます

アクセス設定

または、情報アプリを設定してアクセスすることもできます

于 2013-03-07T10:16:57.520 に答える