RemotingServices.GetServerTypeForUri 方法

返回具有指定 URI 的对象的 Type

**命名空间:**System.Runtime.Remoting
**程序集:**mscorlib(在 mscorlib.dll 中)

语法

声明
Public Shared Function GetServerTypeForUri ( _
    URI As String _
) As Type
用法
Dim URI As String
Dim returnValue As Type

returnValue = RemotingServices.GetServerTypeForUri(URI)
public static Type GetServerTypeForUri (
    string URI
)
public:
static Type^ GetServerTypeForUri (
    String^ URI
)
public static Type GetServerTypeForUri (
    String URI
)
public static function GetServerTypeForUri (
    URI : String
) : Type

参数

  • URI
    请求其 Type 的对象的 URI。

返回值

具有指定 URI 的对象的 Type

异常

异常类型 条件

SecurityException

直接调用方没有基础结构权限,或者调用堆栈上部至少有一个调用方没有检索非公共成员的类型信息的权限。

备注

由于远程处理使用 URI 标识终结点,GetServerTypeForUri 方法在使用 IMessage 对象的远程处理基础结构(例如信道接收器、动态接收器和上下文接收器)的可插接部分中十分有用,这是因为当前的方法将从 URI 返回关联的类型对象。

示例

Console.WriteLine("Server type: {0}", _
                  RemotingServices.GetServerTypeForUri(myObjectUri).ToString())
Console.WriteLine("Server type: {0}",
                  RemotingServices.GetServerTypeForUri(myObjectUri));
Console::WriteLine( "Server type: {0}", RemotingServices::GetServerTypeForUri( const_cast<String^>(myObjectUri) ) );

.NET Framework 安全性

平台

Windows 98、Windows 2000 SP4、Windows Millennium Edition、Windows Server 2003、Windows XP Media Center Edition、Windows XP Professional x64 Edition、Windows XP SP2、Windows XP Starter Edition

.NET Framework 并不是对每个平台的所有版本都提供支持。有关受支持版本的列表,请参见系统要求

版本信息

.NET Framework

受以下版本支持:2.0、1.1、1.0

请参见

参考

RemotingServices 类
RemotingServices 成员
System.Runtime.Remoting 命名空间