NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

RealProxy.Invoke

Method to which the transparent proxy delegates when it gets called. Is used by the transparent proxy to call the real proxy.

[Visual Basic]
MustOverride Public Sub Invoke( _
   ByVal msg As IMessage _
)
[C#]
public abstract void Invoke(
   IMessage msg
);
[C++]
public: virtual void Invoke(
   IMessage* msg
) = 0;
[JScript]
public abstract function Invoke(
   msg : IMessage
);

Parameters

msg
IMethodMessage.

See Also

RealProxy Class | RealProxy Members | System.Runtime.Remoting Namespace