1 type derived from Catch
System.Activities (1)
System\Activities\Statements\Catch.cs (1)
34public sealed class Catch<TException> : Catch
17 references to Catch
System.Activities (16)
System\Activities\Statements\Rethrow.cs (1)
116foreach (Catch catchHandler in tryCatch.Catches)
System\Activities\Statements\TryCatch.cs (15)
66public Collection<Catch> Catches 134foreach (Catch item in this.catches) 156internal static Catch FindCatchActivity(Type typeToMatch, IList<Catch> catches) 158foreach (Catch item in catches) 212Catch toSchedule = FindCatch(state.CaughtException.Exception); 244Catch catchHandler = FindCatch(propagatedException); 317Catch FindCatch(Exception exception) 320Catch potentialCatch = null; 322foreach (Catch catchHandler in this.Catches) 374class CatchList : ValidatingCollection<Catch> 388protected override void InsertItem(int index, Catch item) 395Catch existingCatch = TryCatch.FindCatchActivity(item.ExceptionType, this.Items); 405protected override void SetItem(int index, Catch item) 412Catch existingCatch = TryCatch.FindCatchActivity(item.ExceptionType, this.Items);
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\CutCopyPasteHelper.cs (1)
59disallowedTypesForCopy.Add(typeof(Catch));