Exemple #1
0
            public override bool IsRunnable(RunnableCheckArgs args)
            {
                bool n           = base.IsRunnable(args);
                bool isNetDevice = args.TargetDevice is NetDevice;

                return(n && isNetDevice);
            }
Exemple #2
0
 public abstract bool IsRunnable(RunnableCheckArgs args);
 public override bool IsRunnable(RunnableCheckArgs args)
 {
     return(base.IsRunnable(args) && args.TargetDevice is UsbDevice);
 }
Exemple #4
0
 public override bool IsRunnable(RunnableCheckArgs args)
 {
     return(args.TargetDevice is NetDevice);
 }