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