1 instantiation of CodeCatchClauseCollection
System (1)
compmod\system\codedom\CodeTryCatchFinallyStatement.cs (1)
29private CodeCatchClauseCollection catchClauses = new CodeCatchClauseCollection();
19 references to CodeCatchClauseCollection
System (19)
compmod\microsoft\csharp\csharpcodeprovider.cs (1)
1492CodeCatchClauseCollection catches = e.CatchClauses;
compmod\microsoft\visualbasic\VBCodeProvider.cs (1)
1567CodeCatchClauseCollection catches = e.CatchClauses;
compmod\system\codedom\CodeCatchClauseCollection.cs (14)
29/// Initializes a new instance of <see cref='System.CodeDom.CodeCatchClauseCollection'/>. 37/// Initializes a new instance of <see cref='System.CodeDom.CodeCatchClauseCollection'/> based on another <see cref='System.CodeDom.CodeCatchClauseCollection'/>. 40public CodeCatchClauseCollection(CodeCatchClauseCollection value) { 46/// Initializes a new instance of <see cref='System.CodeDom.CodeCatchClauseCollection'/> containing any array of <see cref='System.CodeDom.CodeCatchClause'/> objects. 67/// <see cref='System.CodeDom.CodeCatchClauseCollection'/> .</para> 74/// <para>Copies the elements of an array to the end of the <see cref='System.CodeDom.CodeCatchClauseCollection'/>.</para> 87/// Adds the contents of another <see cref='System.CodeDom.CodeCatchClauseCollection'/> to the end of the collection. 90public void AddRange(CodeCatchClauseCollection value) { 102/// <see cref='System.CodeDom.CodeCatchClauseCollection'/> contains the specified <see cref='System.CodeDom.CodeCatchClause'/>.</para> 109/// <para>Copies the <see cref='System.CodeDom.CodeCatchClauseCollection'/> values to a one-dimensional <see cref='System.Array'/> instance at the 118/// the <see cref='System.CodeDom.CodeCatchClauseCollection'/> .</para> 125/// <para>Inserts a <see cref='System.CodeDom.CodeCatchClause'/> into the <see cref='System.CodeDom.CodeCatchClauseCollection'/> at the specified index.</para> 133/// <see cref='System.CodeDom.CodeCatchClauseCollection'/> .</para>
compmod\system\codedom\CodeTryCatchFinallyStatement.cs (2)
29private CodeCatchClauseCollection catchClauses = new CodeCatchClauseCollection(); 79public CodeCatchClauseCollection CatchClauses {
compmod\system\codedom\compiler\CodeValidator.cs (1)
449CodeCatchClauseCollection catches = e.CatchClauses;