Example #1
0
 internal RecursiveCallerContext(RecursiveCallContext context, RecursiveCallContext?oldContext)
 {
     _context    = context;
     _oldContext = oldContext;
 }
 internal RecursiveCallResult()
 {
     Context = RecursiveCallContext.Context ??
               throw new InvalidOperationException(
                         "RecursiveCall cannot use out of RecursiveCallCaller.Call method.");
 }