System.Runtime.Remoting.Channels.BinaryServerFormatterSink.BinaryServerFormatterSink C# (CSharp) Method

BinaryServerFormatterSink() public method

public BinaryServerFormatterSink ( Protocol protocol, IServerChannelSink nextSink, IChannelReceiver receiver ) : System
protocol Protocol
nextSink IServerChannelSink
receiver IChannelReceiver
return System
        public BinaryServerFormatterSink(Protocol protocol, IServerChannelSink nextSink,
                                         IChannelReceiver receiver)
        {
            if (receiver == null)
                throw new ArgumentNullException("receiver");

            _nextSink = nextSink;
            _protocol = protocol;
            _receiver = receiver;            
        } // BinaryServerFormatterSinkProvider