NetMQ.SocketOptions.SocketOptions C# (CSharp) Method

SocketOptions() public method

Create a new SocketOptions that references the given NetMQSocket.
public SocketOptions ( [ socket ) : System
socket [ the NetMQSocket for this SocketOptions to hold a reference to
return System
        public SocketOptions([NotNull] NetMQSocket socket)
        {
            m_socket = socket;
        }
SocketOptions