コード例 #1
0
 public static SelectionDelegateResultContext <TIn, TOut> Then <TIn, TOut>(this ResultContext <Func <TIn, TOut> > @this)
 => @this.Get().Then();
コード例 #2
0
 public static CommandResultContext <T> Then <T>(this ResultContext <ICommand <T> > @this)
 => @this.Get().Then();
コード例 #3
0
 public static SelectionResultContext <TIn, TOut> Then <TIn, TOut>(this ResultContext <ISelect <TIn, TOut> > @this)
 => @this.Get().Then();
コード例 #4
0
 public static SelectionResultContext <T, bool> Then <T>(this ResultContext <ICondition <T> > @this)
 => @this.Get().Then();
コード例 #5
0
 public static ResultDelegateContext <T> Then <T>(this ResultContext <Func <T> > @this)
 => @this.Get().Then();
コード例 #6
0
 public static NestedResultContext <T> Then <T>(this ResultContext <IResult <T> > @this)
 => @this.Get().Then();
コード例 #7
0
 public static T Return <T>(this ResultContext <T> @this) => @this.Get().Get();