vote up 0 vote down star

When implementing IClientChannelSinkProvider's CreateSink method:

public IClientChannelSink CreateSink(IChannelSender channel, String url, Object remoteChannelData)
{

        IClientChannelSink nextSink = null;
        if (_next != null)
        {
            nextSink = _next.CreateSink(channel, url, remoteChannelData);
            if (nextSink == null)
                return null;
        }

        return new MyClientChannelSink(nextSink);
}

In what scenario _next.CreateSink returns null?

flag

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.