RemotingServices.GetServerTypeForUri(String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回具有指定 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 的物件 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 傳回相關聯的類型物件。