示例#1
0
 internal DoWhileControlState(PromiseFactory factory, Func <IPromise <ControlValue <object> > > body)
     : base(factory)
 {
     _while = new DoWhileControlValue <object>(factory, body);
 }
示例#2
0
 internal DoWhileNullableResult(PromiseFactory factory, Func <IPromise <ControlValue <T> > > body)
     : base(factory)
 {
     _while = new DoWhileControlValue <T>(factory, body);
 }