共用方式為


RemotingServices.GetServerTypeForUri(String) 方法

定義

傳回具有指定 URI 的物件 Type

public:
 static Type ^ GetServerTypeForUri(System::String ^ URI);
public static Type GetServerTypeForUri (string URI);
[System.Security.SecurityCritical]
public static Type GetServerTypeForUri (string URI);
static member GetServerTypeForUri : string -> Type
[<System.Security.SecurityCritical>]
static member GetServerTypeForUri : string -> Type
Public Shared Function GetServerTypeForUri (URI As String) As Type

參數

URI
String

要求其 Type 的物件 URI。

傳回

具有指定 URI 的物件 Type

屬性

例外狀況

立即呼叫端沒有基礎結構權限,或至少呼叫堆疊中較高的一個呼叫端沒有權限,以擷取非公用成員的型別資訊。

範例

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

備註

由於遠端處理會使用 URI 識別端點,因此 GetServerTypeForUri 在遠端 (基礎結構的插入部分非常有用,例如通道接收、動態接收,以及使用 IMessage 物件的內容接收) ,因為目前的 方法會從 URI 傳回相關聯的類型物件。

適用於