共用方式為


<system.net> 項目

包含 Internet 應用程式的設定。

<configuration>
<system.net>

<system.net>
</system.net>

子項目

項目 說明
<authenticationModules> 指定用於驗證 Internet 要求的模組。
<connectionManagement> 指定連結至 Internet 主機的最大數目。
<defaultProxy> 指定用於對網際網路 HTTP 要求的 Proxy 伺服器。
<webRequestModules> 指定用於向 Internet 主機要求資訊的模組。

備註

<system.net> 項目包含 System.Net 命名空間中的類別的設定。這些設定會設定從 Internet 主機接收資訊的驗證模組、連結管理、Proxy 伺服器及 Internet 要求模組。

範例

以下範例顯示了 System.Net 類別所使用的預設組態。

<configuration>
   <system.net>
      <authenticationModules>
         <add type = "System.Net.DigestClient" />
         <add type = "System.Net.NegotiateClient" />
         <add type = "System.Net.KerberosClient" />
         <add type = "System.Net.NtlmClient" />
         <add type = "System.Net.BasicClient" />
      </authenticationModules>
      <connectionManagement>
         <add address = "*" maxconnection = "2" />
      </connectionManagement>
      <defaultProxy>
         <proxy
            usesystemdefault = "true"
            bypassonlocal = "true"
         />
      </defaultProxy>
      <webRequestModules>
         <add prefix = "http"
            type = "System.Net.HttpRequestCreator"
         />
         <add prefix = "https"
            type = "System.Net.HttpRequestCreator"
         />
         <add prefix = "file"
            type = "System.Net.FileWebRequestCreator"
         />
      </webRequestModules>
   </system.net>
</configuration>

組態檔

這個項目可在應用程式組態檔、電腦組態檔 (Machine.config) 和發行者原則檔中使用。

請參閱

網路設定結構描述