RealProxy.GetTransparentProxy メソッド
RealProxy の現在のインスタンスの透過プロキシを返します。
Public Overridable Function GetTransparentProxy() As Object
[C#]
public virtual object GetTransparentProxy();
[C++]
public: virtual Object* GetTransparentProxy();
[JScript]
public function GetTransparentProxy() : Object;
戻り値
現在のプロキシ インスタンスの透過プロキシ。
使用例
' Create an instance of MyProxy.
Dim myProxyInstance As New MyProxy(GetType(CustomServer))
' Get a CustomServer proxy.
Dim myHelloServer As CustomServer = _
CType(myProxyInstance.GetTransparentProxy(), CustomServer)
[C#]
// Create an instance of MyProxy.
MyProxy myProxyInstance = new MyProxy(typeof(CustomServer));
// Get a CustomServer proxy.
CustomServer myHelloServer = (CustomServer)myProxyInstance.GetTransparentProxy();
[C++]
// Create an instance of MyProxy.
MyProxy* myProxyInstance = new MyProxy(__typeof(CustomServer));
// Get a CustomServer proxy.
CustomServer* myHelloServer = static_cast<CustomServer*>(myProxyInstance->GetTransparentProxy());
[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 名前空間