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)
982foreach (CodeCatchClause current in catches)
Microsoft\VisualBasic\VBCodeGenerator.cs (1)
1319foreach (CodeCatchClause current in catches)
System\CodeDom\CodeCatchClauseCollection.cs (10)
17public CodeCatchClauseCollection(CodeCatchClause[] value) 22public CodeCatchClause this[int index] 24get => ((CodeCatchClause)(List[index])); 28public int Add(CodeCatchClause value) => List.Add(value); 30public void AddRange(CodeCatchClause[] value) 57public bool Contains(CodeCatchClause value) => List.Contains(value); 59public void CopyTo(CodeCatchClause[] array, int index) => List.CopyTo(array, index); 61public int IndexOf(CodeCatchClause value) => List.IndexOf(value); 63public void Insert(int index, CodeCatchClause value) => List.Insert(index, value); 65public void Remove(CodeCatchClause value) => List.Remove(value);
System\CodeDom\CodeTryCatchFinallyStatement.cs (2)
10public CodeTryCatchFinallyStatement(CodeStatement[] tryStatements, CodeCatchClause[] catchClauses) 16public CodeTryCatchFinallyStatement(CodeStatement[] tryStatements, CodeCatchClause[] catchClauses, CodeStatement[] finallyStatements)
System\CodeDom\Compiler\CodeValidator.cs (1)
520foreach (CodeCatchClause current in catches)