Exemplo n.º 1
0
 protected static void OnStopScreenSaver(string bstrUserName)
 {
     if (SensLogon.stopScreenSaver != null)
     {
         SensLogon.stopScreenSaver(typeof(SensLogon), new MonitorEventArgs(bstrUserName));
     }
 }
Exemplo n.º 2
0
 protected static void OnDisplayUnlock(string bstrUserName)
 {
     if (SensLogon.displayUnlock != null)
     {
         SensLogon.displayUnlock(typeof(SensLogon), new MonitorEventArgs(bstrUserName));
     }
 }
Exemplo n.º 3
0
        public static IMonitorEvents GetInstance()
        {
            if (instance == null)
            {
                instance = new SensLogon();
            }

            return(instance);
        }
Exemplo n.º 4
0
        public static IMonitorEvents GetInstance()
        {
            if(instance == null) {
                instance = new SensLogon();
            }

            return(instance);
        }
Exemplo n.º 5
0
 void ISensLogon.StopScreenSaver(string bstrUserName)
 {
     SensLogon.OnStopScreenSaver(bstrUserName);
 }
Exemplo n.º 6
0
 public void DisplayUnlock(string bstrUserName)
 {
     SensLogon.OnDisplayUnlock(bstrUserName);
 }