次の方法で共有


RealProxy.GetProxiedType メソッド

RealProxy の現在のインスタンスが表すオブジェクトの Type を返します。

Public Function GetProxiedType() As Type
[C#]
public Type GetProxiedType();
[C++]
public: Type* GetProxiedType();
[JScript]
public function GetProxiedType() : Type;

戻り値

RealProxy の現在のインスタンスが表すオブジェクトの Type

使用例

 
' Create an instance of MyProxy.
Dim myProxyInstance As New MyProxy(GetType(CustomServer))
' Get a CustomServer proxy.
Dim myHelloServer As CustomServer = _
            CType(myProxyInstance.GetTransparentProxy(), CustomServer)
' Get stubdata.
Console.WriteLine("GetStubData = " + RealProxy.GetStubData(myProxyInstance).ToString())
' Get ProxyType.
Console.WriteLine("Type of object represented by RealProxy is :" + _
                                       myProxyInstance.GetProxiedType().ToString())

[C#] 
// Create an instance of MyProxy.
MyProxy myProxyInstance = new MyProxy(typeof(CustomServer));
// Get a CustomServer proxy.
CustomServer myHelloServer = (CustomServer)myProxyInstance.GetTransparentProxy();
// Get stubdata.
Console.WriteLine("GetStubData = " + RealProxy.GetStubData(myProxyInstance).ToString()); 
// Get ProxyType.
Console.WriteLine("Type of object represented by RealProxy is :" 
                  + myProxyInstance.GetProxiedType());

[C++] 
// Create an instance of MyProxy.
MyProxy* myProxyInstance = new MyProxy(__typeof(CustomServer));
// Get a CustomServer proxy.
CustomServer* myHelloServer = static_cast<CustomServer*>(myProxyInstance->GetTransparentProxy());
// Get stubdata.
Console::WriteLine(S"GetStubData = {0}", RealProxy::GetStubData(myProxyInstance)); 
// Get ProxyType.
Console::WriteLine(S"Type of Object* represented by RealProxy is : {0}", myProxyInstance->GetProxiedType());

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ

参照

RealProxy クラス | RealProxy メンバ | System.Runtime.Remoting.Proxies 名前空間