internal void ConnectReq()
        {
            TConnectReqRes _connectReqResult = ApplicationLayerMaster.ConnectReq(m_CommLayerAddress);

            if (_connectReqResult != TConnectReqRes.Success)
            {
                string _msg = String.Format("Connect request to remote {0} failed the with error: {1}.", m_CommLayerAddress, _connectReqResult);
                throw new ConnectReqResException(_connectReqResult, _msg);
            }
        }
 public ConnectReqResException(TConnectReqRes result, string message, Exception inner)
     : base(message, inner)
 {
     Result = result;
 }