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

PullSocket() public method

Create a new PullSocket and attach socket to zero or more endpoints.
public PullSocket ( string connectionString = null ) : System
connectionString string List of NetMQ endpoints, seperated by commas and prefixed by '@' (to bind the socket) or '>' (to connect the socket). /// Default action is bind (if endpoint doesn't start with '@' or '>')
return System
        public PullSocket(string connectionString = null) : base(ZmqSocketType.Pull, connectionString, DefaultAction.Bind)
        {

        }

Same methods

PullSocket::PullSocket ( NetMQ.zmq.SocketBase socketHandle ) : System