protected override bool IsIdentic(BaseActionModel other)
 {
     return(other is WaitForRebootActionModel model &&
            Timeout.Equals(model.Timeout));
 }
예제 #2
0
 protected override bool IsIdentic(BaseActionModel other)
 {
     return(other is RebootActionModel);
 }
예제 #3
0
 protected override bool IsIdentic(BaseActionModel other)
 {
     return(other is BarrierActionModel model &&
            Barrier.IsIdentical(model.Barrier));
 }
예제 #4
0
 protected override bool IsIdentic(BaseActionModel other)
 {
     return(other is MethodActionModel model &&
            string.Equals(FullName, model.FullName));
 }