<activated> 元素(客户端实例)

包含客户端应用程序使用的客户端激活对象。如果指定了 <activated> 元素,则必须为 <client> 元素指定 url 属性,否则将引发异常。

<configuration>

  <system.runtime.remoting> 元素

    <application> 元素

      <client> 元素

        <activated> 元素(客户端实例)

<activated  
   type="type,assembly"
/>

属性和元素

以下几节介绍属性、子元素和父元素。

属性

属性 说明

type

必选的属性。

指定对象的完整类型名和包含该类型实现的程序集的名称。如果包含程序集位于全局程序集缓存中,则此信息包括版本、区域性和公钥信息。

子元素

无。

父元素

元素 说明

configuration

公共语言运行库和 .NET Framework 应用程序所使用的每个配置文件中的根元素。

system.web

为 ASP.NET 配置节指定根元素。

示例

下面的配置文件声明要使用的客户端激活远程类型,并指定客户端应用程序应使用 HttpChannel,但允许 .NET Framework 远程处理系统代表客户端查找合适的端口。

<configuration>
   <system.runtime.remoting>
      <application>
         <client 
            url="http://computername:8080"
         />
            <activated
               type="RemoteType, RemoteAssembly"
            />
         </client>
         <channels>
            <channel 
               ref="http" 
               port="0"/>
         </channels>
      </application>
   </system.runtime.remoting>
</configuration>

请参见

参考

远程处理设置架构

概念

客户端激活

Footer image

版权所有 (C) 2007 Microsoft Corporation。保留所有权利。