Ejemplo n.º 1
0
        public ConnectorBase(Loggers.ILogger theLogger)
        {
            this.theLogger = theLogger;

            theServer = new Lers.LersServer();

            theServer.VersionMismatch += (sender, e) => e.Ignore = true;
        }
Ejemplo n.º 2
0
 public ConnectorSync(Loggers.ILogger theLogger, ListView theListView) : base(theLogger)
 {
     this.theListView = theListView;
 }
Ejemplo n.º 3
0
 public ConnectorASync(Loggers.ILogger theLogger, ListView theListView, Form theSplash) : base(theLogger)
 {
     this.theListView    = theListView;
     this.theSplash      = theSplash;
     connectCancellation = new CancellationTokenSource();
 }