<debug> 項目
指定應用程式啟動時,是否在組態檔中載入型別。當組態檔的名稱是 web.config,而且遠端型別主機處理序是網際網路資訊服務 (IIS) 時,無法指定這個項目。
<configuration>
<system.runtime.remoting> 項目
<debug> 項目
<debug
loadTypes="true|false"
/>
屬性和項目
下列章節將說明屬性、子項目和父項目。
屬性
屬性 | 說明 |
---|---|
loadTypes |
必要屬性。 指定當應用程式啟動時,是否載入所有在這個組態檔中指定的型別,以便如果在您的組態檔中有錯誤的話,可以取得警示。這有助於避免單純的輸入錯誤成為費時偵錯的主因。 |
子項目
無。
父項目
項目 | 說明 |
---|---|
configuration |
Common Language Runtime 和 .NET Framework 應用程式所使用之每個組態檔中的根項目。 |
system.runtime.remoting |
包含有關遠端物件和通道的資訊。 |
範例
下列組態檔範例會在用戶端應用程式啟動時,告知 .NET Framework 遠端處理系統嘗試載入這個檔案中指定的型別 (在這個案例中,為 ServiceClass 和 TcpChannel 型別)。
<configuration>
<system.runtime.remoting>
<application>
<client>
<wellknown
type="ServiceClass, IService"
url="tcp://computername:8080/TcpService"
/>
</client>
<channels>
<channel ref="tcp"/>
</channels>
</application>
<debug loadTypes="true" />
</system.runtime.remoting>
</configuration>
請參閱
參考
Copyright © 2007 by Microsoft Corporation. All rights reserved.