Beispiel #1
0
 public void NotifyChange(Guid guid, Priv10Engine.ChangeArgs.Types type)
 {
     Priv10Engine.ChangeArgs args = new Priv10Engine.ChangeArgs()
     {
         guid = guid,
         type = type
     };
     SendPushNotification("ChangeNotification", args);
 }
Beispiel #2
0
 public void NotifyChange(Program prog, FirewallRuleEx rule, Priv10Engine.RuleEventType type, Priv10Engine.RuleFixAction action)
 {
     Priv10Engine.ChangeArgs args = new Priv10Engine.ChangeArgs()
     {
         prog   = prog,
         rule   = rule,
         type   = type,
         action = action
     };
     SendPushNotification("ChangeNotification", args);
 }