2 writes to Exception
System.Activities (2)
System\Activities\Runtime\FaultContext.cs (2)
22this.Exception = exception; 54set { this.Exception = value; }
6 references to Exception
System.Activities (6)
System\Activities\Runtime\ActivityExecutor.cs (1)
1758this.scheduler.PushWork(new RethrowExceptionWorkItem(fromInstance, context.Exception, context.Source));
System\Activities\Runtime\FaultContext.cs (1)
53get { return this.Exception; }
System\Activities\Statements\TryCatch.cs (4)
107if (state != null && !state.SuppressCancel && state.CaughtException != null && this.FindCatch(state.CaughtException.Exception) == null) 114updateContext.DisallowUpdate(SR.TryCatchInvalidStateForUpdate(state.CaughtException.Exception)); 212Catch toSchedule = FindCatch(state.CaughtException.Exception); 220toSchedule.ScheduleAction(context, state.CaughtException.Exception, new CompletionCallback(OnCatchComplete), this.ExceptionFromCatchOrFinallyHandler);