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