//-----------------------------------------------------------------------------------------------------
        public FormMCastReceiverN(string connectionName, ushort dataId)
        {
            InitializeComponent();


            _settings = new MCastSettings();
            _settings.ConnectionName = connectionName;
            _settings.DataId         = dataId;
            SectionName = "ReceiverMCast - " + connectionName;
            FlowStats   = new DataFlowStats();
        }
        //-----------------------------------------------------------------------------------------------------
        public FormMCastSenderN(string connectionName, ushort dataId)
        {
            InitializeComponent();

            _settings = new MCastSettings
            {
                ConnectionName = connectionName,
                DataId         = dataId
            };
            SectionName = "SenderMCast " + connectionName;
            FlowStats   = new DataFlowStats();
            _connected  = false;
        }