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!

IContributeObjectSink.GetObjectSink

Takes the object and the first sink in the chain of sinks composed so far, chains its message sink in front of the chain formed.

[Visual Basic]
Function GetObjectSink( _
   ByVal obj As MarshalByRefObject, _
   ByVal nextSink As IMessageSink _
) As IMessageSink
[C#]
IMessageSink GetObjectSink(
   MarshalByRefObject obj,
   IMessageSink nextSink
);
[C++]
IMessageSink* GetObjectSink(
   MarshalByRefObject* obj,
   IMessageSink* nextSink
) = 0;
[JScript]
function GetObjectSink(
   obj : MarshalByRefObject,
   nextSink : IMessageSink
) : IMessageSink;

Parameters

obj
Object.
nextSink
The chain of sinks composed so far.

Return Value

Returns the composite sink chain.

See Also

IContributeObjectSink Interface | IContributeObjectSink Members | System.Runtime.Remoting Namespace