1 write to CaughtException
System.Activities (1)
System\Activities\Statements\TryCatch.cs (1)
267state.CaughtException = context.CreateFaultContext();
7 references to CaughtException
System.Activities (7)
System\Activities\Statements\TryCatch.cs (7)
107if (state != null && !state.SuppressCancel && state.CaughtException != null && this.FindCatch(state.CaughtException.Exception) == null) 114updateContext.DisallowUpdate(SR.TryCatchInvalidStateForUpdate(state.CaughtException.Exception)); 210if (state.CaughtException != null) 212Catch toSchedule = FindCatch(state.CaughtException.Exception); 219context.Properties.Add(FaultContextId, state.CaughtException, true); 220toSchedule.ScheduleAction(context, state.CaughtException.Exception, new CompletionCallback(OnCatchComplete), this.ExceptionFromCatchOrFinallyHandler);