RealProxy.GetStubData(RealProxy) Method

Definition

Retrieves stub data that is stored for the specified proxy.

C#
public static object GetStubData(System.Runtime.Remoting.Proxies.RealProxy rp);
C#
[System.Security.SecurityCritical]
public static object GetStubData(System.Runtime.Remoting.Proxies.RealProxy rp);

Parameters

rp
RealProxy

The proxy for which stub data is requested.

Returns

Stub data for the specified proxy.

Attributes

Exceptions

The immediate caller does not have UnmanagedCode permission.

Examples

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());

Remarks

The stub data is used by custom proxy users to decide what to do with an incoming method call. For example, the stub data might be information about the server's context that you can use to determine whether to execute the call locally, or send it through the remoting infrastructure.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1