<debug> 要素
アプリケーションの起動時に、構成ファイル内に指定されている型を読み込んでおくかどうかを指定します。この要素は、構成ファイルの名前が web.config であり、リモート型のホスト プロセスがインターネット インフォメーション サービス (IIS: Internet Information Services) の場合は指定できません。
<configuration>
<system.runtime.remoting>
<debug>
<debug
loadTypes="true|false"
/>
必須属性
属性 | 説明 |
---|---|
loadTypes | 構成ファイル内の指定に間違いがあった場合に警告が出力されるように、アプリケーションの起動時に構成ファイルに指定されているすべての型を読み込んでおくかどうかを指定します。これによって、単純な入力ミスによる、時間のかかるデバッグ作業の発生を防止できます。 |
例
次の構成ファイルは、クライアント アプリケーションの起動時にそのファイル内に指定されている型 (この例では ServiceClass 型と TcpChannel 型) を読み込むように .NET リモート処理システムに指示しています。
<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>
必要条件
構成ファイル : アプリケーション構成ファイル、マシン構成ファイル (Machine.config)