<debug> 元素
指定当应用程序启动时是否加载配置文件中的类型。当配置文件被命名为 web.config 而远程类型宿主进程为 Internet 信息服务 (IIS) 时,不能指定此元素。
<configuration>
<system.runtime.remoting> 元素
<debug> 元素
<debug
loadTypes="true|false"
/>
属性和元素
以下几节介绍属性、子元素和父元素。
属性
属性 | 说明 |
---|---|
loadTypes |
必选的属性。 指定当应用程序启动时是否加载在此配置文件中指定的所有类型,以便在配置文件中存在错误时可以得到警告。这有助于防止简单的键入错误占用太多的调试时间。 |
子元素
无。
父元素
元素 | 说明 |
---|---|
configuration |
公共语言运行库和 .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>
请参见
参考
版权所有 (C) 2007 Microsoft Corporation。保留所有权利。