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