示例#1
0
 public override ICompletes <TResult> With(TResult outcome)
 {
     base.With(outcome);
     ReadyToExectue.Set(false);
     RepeatInternal();
     return(this);
 }
示例#2
0
 public override ICompletes <TResult> With(TResult outcome)
 {
     HasException.Set(false);
     HasFailedValue.Set(false);
     base.With(outcome);
     ReadyToExectue.Set(false);
     RepeatInternal();
     return(this);
 }