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!

RemotingServices.Unmarshal

Takes an ObjRef (possibly created by deserializing the bytes transmitted over the wire from another AppDomain and creates a proxy object out of it.

[Visual Basic]
Public Shared Function Unmarshal( _
   ByVal objectRef As ObjRef _
) As MarshalByRefObject
[C#]
public static MarshalByRefObject Unmarshal(
   ObjRef objectRef
);
[C++]
public: static MarshalByRefObject* Unmarshal(
   ObjRef* objectRef
);
[JScript]
public static function Unmarshal(
   objectRef : ObjRef
) : MarshalByRefObject;

Parameters

objectRef
ObjRef.

Return Value

Proxy,

See Also

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