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