RealProxy.SetStubData(RealProxy, Object) Method

Definition

Sets the stub data for the specified proxy.

C#
public static void SetStubData(System.Runtime.Remoting.Proxies.RealProxy rp, object stubData);
C#
[System.Security.SecurityCritical]
public static void SetStubData(System.Runtime.Remoting.Proxies.RealProxy rp, object stubData);

Parameters

rp
RealProxy

The proxy for which to set stub data.

stubData
Object

The new stub data.

Attributes

Exceptions

The immediate caller does not have UnmanagedCode permission.

Examples

C#
public override RealProxy CreateProxy(ObjRef objRef1,
   Type serverType,
   object serverObject,
   Context serverContext)
{
   MyProxy myCustomProxy = new MyProxy(serverType);
   if(serverContext != null)
   {
      RealProxy.SetStubData(myCustomProxy,serverContext);
   }
   if((!serverType.IsMarshalByRef)&&(serverContext == null))
   {
      throw new RemotingException("Bad Type for CreateProxy");
   }
   return myCustomProxy;
}

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