共用方式為


RemotingServices.GetRealProxy(Object) 方法

定義

傳回指定透明 Proxy 背後的實際 Proxy。

public:
 static System::Runtime::Remoting::Proxies::RealProxy ^ GetRealProxy(System::Object ^ proxy);
public static System.Runtime.Remoting.Proxies.RealProxy GetRealProxy (object proxy);
[System.Security.SecurityCritical]
public static System.Runtime.Remoting.Proxies.RealProxy GetRealProxy (object proxy);
static member GetRealProxy : obj -> System.Runtime.Remoting.Proxies.RealProxy
[<System.Security.SecurityCritical>]
static member GetRealProxy : obj -> System.Runtime.Remoting.Proxies.RealProxy
Public Shared Function GetRealProxy (proxy As Object) As RealProxy

參數

proxy
Object

透明 Proxy。

傳回

透明 Proxy 背後的實際 Proxy。

屬性

例外狀況

立即呼叫端沒有基礎結構使用權限。

備註

跨任何類型的遠端界限使用物件的用戶端,實際上是使用物件的透明 Proxy。 透明 Proxy 會提供實際物件位於用戶端空間中的印象。 其可藉由使用遠端基礎結構將對實際物件的呼叫轉送至實際物件來達成此目的。

透明 Proxy 是由 型 RealProxy 別 的 Managed 執行時間類別實例所支援。 會 RealProxy 實作從透明 Proxy 轉送作業所需的一部分功能。

Proxy 物件會繼承 Managed 物件的相關聯語意,例如垃圾收集、成員和方法的支援,並可擴充以形成新的類別。 Proxy 做為與遠端物件相同類別的物件, (透明 Proxy) ,也是 Managed 物件。

適用於

另請參閱