System.Runtime.Remoting.Channels.BinaryServerFormatterSink.BinaryServerFormatterSink C# (CSharp) 메소드

BinaryServerFormatterSink() 공개 메소드

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

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