RealProxy.GetTransparentProxy メソッド
アセンブリ: mscorlib (mscorlib.dll 内)

Dim instance As RealProxy Dim returnValue As Object returnValue = instance.GetTransparentProxy
現在のプロキシ インスタンスの透過プロキシ。

' 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())
// 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());
// Create an instance of MyProxy. MyProxy^ myProxyInstance = gcnew MyProxy( CustomServer::typeid ); // Get a CustomServer proxy. CustomServer^ myHelloServer = static_cast<CustomServer^>(myProxyInstance->GetTransparentProxy()); // Get stubdata. Console::WriteLine( "GetStubData = {0}", RealProxy::GetStubData( myProxyInstance ) ); // Get ProxyType. Console::WriteLine( "Type of object represented by RealProxy is : {0}", myProxyInstance->GetProxiedType() );

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 によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からRealProxy.GetTransparentProxy メソッドを検索する場合は、下記のリンクをクリックしてください。

- RealProxy.GetTransparentProxy メソッドのページへのリンク