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

            return(instance);
        }
コード例 #4
0
        public static IMonitorEvents GetInstance()
        {
            if(instance == null) {
                instance = new SensLogon();
            }

            return(instance);
        }
コード例 #5
0
 void ISensLogon.StopScreenSaver(string bstrUserName)
 {
     SensLogon.OnStopScreenSaver(bstrUserName);
 }
コード例 #6
0
 public void DisplayUnlock(string bstrUserName)
 {
     SensLogon.OnDisplayUnlock(bstrUserName);
 }