NetMQ.Sockets.PullSocket.TrySend C# (CSharp) Method

TrySend() public method

public TrySend ( NetMQ.zmq.Msg &msg, System.TimeSpan timeout, bool more ) : bool
msg NetMQ.zmq.Msg
timeout System.TimeSpan
more bool
return bool
        public override bool TrySend(ref Msg msg, TimeSpan timeout, bool more)
        {
            throw new NotSupportedException("Pull socket doesn't support sending");
        }
    }