public void FbLogTest()
        {
            FbLog logSvc = new FbLog();

            logSvc.ConnectionString = BuildServicesConnectionString(FbServerType, Compression, false);

            logSvc.ServiceOutput += ServiceOutput;

            logSvc.Execute();
        }
Beispiel #2
0
        public void FbLogTest()
        {
            FbLog logSvc = new FbLog();

            logSvc.ConnectionString = BuildServicesConnectionString(false);

            logSvc.ServiceOutput += ServiceOutput;

            logSvc.Execute();
        }
Beispiel #3
0
        public void FbLogTest()
        {
            FbLog logSvc = new FbLog();

            logSvc.ConnectionString = this.BuildServicesConnectionString(false);

            logSvc.ServiceOutput += new ServiceOutputEventHandler(ServiceOutput);

            logSvc.Execute();
        }