MethodCallMessageWrapper(IMethodCallMessage) Constructor

Definition

Initializes a new instance of the MethodCallMessageWrapper class by wrapping an IMethodCallMessage interface.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 MethodCallMessageWrapper(System::Runtime::Remoting::Messaging::IMethodCallMessage ^ msg);
public MethodCallMessageWrapper (System.Runtime.Remoting.Messaging.IMethodCallMessage msg);
new System.Runtime.Remoting.Messaging.MethodCallMessageWrapper : System.Runtime.Remoting.Messaging.IMethodCallMessage -> System.Runtime.Remoting.Messaging.MethodCallMessageWrapper
Public Sub New (msg As IMethodCallMessage)

Parameters

msg
IMethodCallMessage

A message that acts as an outgoing method call on a remote object.

Remarks

The MethodCallMessageWrapper class is used by the remoting infrastructure of the .NET Framework. You do not need to create an instance of the MethodCallMessageWrapper class directly; instead, use the IMethodCallMessage interface.

Applies to