16 references to CodeCatchClause
System (1)
src\libraries\shims\System\ref\System.cs (1)
40
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.CodeDom.
CodeCatchClause
))]
System.CodeDom (15)
Microsoft\CSharp\CSharpCodeGenerator.cs (1)
982
foreach (
CodeCatchClause
current in catches)
Microsoft\VisualBasic\VBCodeGenerator.cs (1)
1319
foreach (
CodeCatchClause
current in catches)
System\CodeDom\CodeCatchClauseCollection.cs (10)
17
public CodeCatchClauseCollection(
CodeCatchClause
[] value)
22
public
CodeCatchClause
this[int index]
24
get => ((
CodeCatchClause
)(List[index]));
28
public int Add(
CodeCatchClause
value) => List.Add(value);
30
public void AddRange(
CodeCatchClause
[] value)
57
public bool Contains(
CodeCatchClause
value) => List.Contains(value);
59
public void CopyTo(
CodeCatchClause
[] array, int index) => List.CopyTo(array, index);
61
public int IndexOf(
CodeCatchClause
value) => List.IndexOf(value);
63
public void Insert(int index,
CodeCatchClause
value) => List.Insert(index, value);
65
public void Remove(
CodeCatchClause
value) => List.Remove(value);
System\CodeDom\CodeTryCatchFinallyStatement.cs (2)
10
public CodeTryCatchFinallyStatement(CodeStatement[] tryStatements,
CodeCatchClause
[] catchClauses)
16
public CodeTryCatchFinallyStatement(CodeStatement[] tryStatements,
CodeCatchClause
[] catchClauses, CodeStatement[] finallyStatements)
System\CodeDom\Compiler\CodeValidator.cs (1)
520
foreach (
CodeCatchClause
current in catches)