Esempio n. 1
0
        static void Main(string[] args)
        {
#if !DEBUG
            if (ProcessManager.amIRunning() == true)
            {
                Helper.Exit(ExitCodes.EXE_ALREADY_RUNNING);
            }
            else
            {
                Helper.Print("Start Process Running");
            }
#endif

            FilesSensor Sen = new FilesSensor();
            Sen.Start();

            /*
             * NetworkCardMitigate nicm = new NetworkCardMitigate();
             * nicm.Disable();
             * nicm.Enable();
             */
            if (Debug.StayRunning == true)
            {
                while (true)
                {
                    Thread.Sleep(3000);
                }
            }
        }
Esempio n. 2
0
 internal DetectionEvent(FilesSensor Sensor)
 {
     Sensor.Detection += new FilesSensor.OnDetection(OpenDetection);
 }