Exemplo n.º 1
0
        public async Task FbLogTest()
        {
            var logSvc = new FbLog();

            logSvc.ConnectionString = BuildServicesConnectionString(ServerType, Compression, WireCrypt, false);
            logSvc.ServiceOutput   += ServiceOutput;
            await logSvc.ExecuteAsync();
        }
Exemplo n.º 2
0
        public void FbLogTest()
        {
            FbLog logSvc = new FbLog();

            logSvc.ConnectionString = BuildServicesConnectionString(false);

            logSvc.ServiceOutput += ServiceOutput;

            logSvc.Execute();
        }
        public void FbLogTest()
        {
            FbLog logSvc = new FbLog();

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

            logSvc.ServiceOutput += ServiceOutput;

            logSvc.Execute();
        }
Exemplo n.º 4
0
        public void FbLogTest()
        {
            FbLog logSvc = new FbLog();

            logSvc.ConnectionString = this.BuildServicesConnectionString(false);

            logSvc.ServiceOutput += new ServiceOutputEventHandler(ServiceOutput);

            logSvc.Execute();
        }