NetMQ.Core.SessionBase.ProcessPlug C# (CSharp) Method

ProcessPlug() protected method

Process the Plug-request by setting this SessionBase as teh handler for the io-object and starting connecting (without waiting).
protected ProcessPlug ( ) : void
return void
        protected override void ProcessPlug()
        {
            m_ioObject.SetHandler(this);
            if (m_connect)
                StartConnecting(false);
        }