RemotingConfiguration 类

定义

提供多种配置远程处理结构的静态方法。

public ref class RemotingConfiguration
public ref class RemotingConfiguration abstract sealed
public class RemotingConfiguration
[System.Runtime.InteropServices.ComVisible(true)]
public static class RemotingConfiguration
type RemotingConfiguration = class
[<System.Runtime.InteropServices.ComVisible(true)>]
type RemotingConfiguration = class
Public Class RemotingConfiguration
继承
RemotingConfiguration
属性

属性

ApplicationId

获取当前正在执行的应用程序的 ID。

ApplicationName

获取或设置远程处理应用程序的名称。

CustomErrorsMode

获取或设置指示如何处理自定义错误的值。

ProcessId

获取当前正在执行的进程的 ID。

方法

Configure(String)
已过时.

读取配置文件并配置远程处理结构。 Configure(String) 已过时。 请改用 Configure(String, Boolean)

Configure(String, Boolean)

读取配置文件并配置远程处理结构。

CustomErrorsEnabled(Boolean)

指示此应用程序域中的服务器信道是向本地或远程调用方返回经过筛选的异常信息,还是返回完整的异常信息。

GetRegisteredActivatedClientTypes()

检索对象类型的数组,这些对象类型在客户端上注册为将被远程激活的类型。

GetRegisteredActivatedServiceTypes()

检索在服务端上注册的对象类型的数组,可以从客户端根据请求激活这些对象类型。

GetRegisteredWellKnownClientTypes()

检索对象类型的数组,这些对象类型在客户端上注册为已知类型。

GetRegisteredWellKnownServiceTypes()

检索对象类型的数组,这些对象类型在服务端上注册为已知类型。

IsActivationAllowed(Type)

返回一个布尔值,该值指示是否允许由客户端激活指定的 Type

IsRemotelyActivatedClientType(String, String)

检查由其类型名称和程序集名称指定的对象是否注册为远程激活的客户端类型。

IsRemotelyActivatedClientType(Type)

检查指定的对象 Type 是否注册为远程激活的客户端类型。

IsWellKnownClientType(String, String)

检查由其类型名称和程序集名称指定的对象是否注册为已知客户端类型。

IsWellKnownClientType(Type)

检查指定的对象 Type 是否注册为已知客户端类型。

RegisterActivatedClientType(ActivatedClientTypeEntry)

将在客户端提供的 Type 中记录的对象 ActivatedClientTypeEntry 注册为可在服务器上激活的类型。

RegisterActivatedClientType(Type, String)

通过使用给定的参数初始化 Type 类的新实例,将客户端上的对象 ActivatedClientTypeEntry 注册为可在服务器上激活的类型。

RegisterActivatedServiceType(ActivatedServiceTypeEntry)

将在服务端提供的 ActivatedServiceTypeEntry 中记录的对象类型注册为可根据请求从客户端激活的类型。

RegisterActivatedServiceType(Type)

将服务端上指定的对象类型注册为可根据请求从客户端激活的类型。

RegisterWellKnownClientType(Type, String)

通过使用给定的参数初始化 Type 类的新实例,将客户端上的对象 WellKnownClientTypeEntry 注册为可在服务器上激活的已知类型。

RegisterWellKnownClientType(WellKnownClientTypeEntry)

将在客户端提供的 Type 中记录的对象 WellKnownClientTypeEntry 注册为可在服务器上激活的已知类型。

RegisterWellKnownServiceType(Type, String, WellKnownObjectMode)

通过使用给定的参数初始化 Type 的新实例,将服务端上的对象 WellKnownServiceTypeEntry 注册为已知类型。

RegisterWellKnownServiceType(WellKnownServiceTypeEntry)

将在服务端提供的 Type 中记录的对象 WellKnownServiceTypeEntry 注册为已知类型。

适用于