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!

ChannelServices.SyncDispatchMessage

This method is used by the channel to dispatch the incoming messages to the server-side chain(s) based on the URI embedded in the message. The URI uniquely identifies the receiving object.

[Visual Basic]
Public Shared Function SyncDispatchMessage( _
   ByVal msg As IMessage _
) As IMessage
[C#]
public static IMessage SyncDispatchMessage(
   IMessage msg
);
[C++]
public: static IMessage* SyncDispatchMessage(
   IMessage* msg
);
[JScript]
public static function SyncDispatchMessage(
   msg : IMessage
) : IMessage;

Parameters

msg
The message to dispatch

Return Value

A reply message is returned by the call to the sever side chain

See Also

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