private void InitializePortManager() { PortManager = new PortManager(this); PortManager.IncomingRequest += new PortManager.IncomingRequestEventHandler(PortManager_IncomingRequest); }
/// <summary> /// Creates an instance of the <see cref="RequestHandler"/> class. /// </summary> public RequestHandler(PortManager portManager, Socket socket) { this.Socket = socket; this.PortManager = portManager; }