NetMQ.Core.Ctx.Endpoint.Endpoint C# (CSharp) Method

Endpoint() public method

Create a new Endpoint with the given socket.
public Endpoint ( [ socket, [ options ) : System
socket [ the socket for this new Endpoint
options [ the Options to assign to this new Endpoint
return System
            public Endpoint([NotNull] SocketBase socket, [NotNull] Options options)
            {
                Socket = socket;
                Options = options;
            }
Ctx.Endpoint