1 instantiation of CodeCatchClauseCollection
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.CodeDom\System\CodeTryCatchFinallyStatement.cs (1)
26private CodeCatchClauseCollection _catchClauses = new CodeCatchClauseCollection();
18 references to CodeCatchClauseCollection
dotnet-svcutil-lib (18)
FrameworkFork\Microsoft.CodeDom\Compiler\CodeValidator.cs (1)
557CodeCatchClauseCollection catches = e.CatchClauses;
FrameworkFork\Microsoft.CodeDom\Microsoft\CSharpCodeProvider.cs (1)
1668CodeCatchClauseCollection catches = e.CatchClauses;
FrameworkFork\Microsoft.CodeDom\System\CodeCatchClauseCollection.cs (14)
26/// Initializes a new instance of <see cref='Microsoft.CodeDom.CodeCatchClauseCollection'/>. 35/// Initializes a new instance of <see cref='Microsoft.CodeDom.CodeCatchClauseCollection'/> based on another <see cref='Microsoft.CodeDom.CodeCatchClauseCollection'/>. 38public CodeCatchClauseCollection(CodeCatchClauseCollection value) 45/// Initializes a new instance of <see cref='Microsoft.CodeDom.CodeCatchClauseCollection'/> containing any array of <see cref='Microsoft.CodeDom.CodeCatchClause'/> objects. 70/// <see cref='Microsoft.CodeDom.CodeCatchClauseCollection'/> .</para> 78/// <para>Copies the elements of an array to the end of the <see cref='Microsoft.CodeDom.CodeCatchClauseCollection'/>.</para> 94/// Adds the contents of another <see cref='Microsoft.CodeDom.CodeCatchClauseCollection'/> to the end of the collection. 97public void AddRange(CodeCatchClauseCollection value) 112/// <see cref='Microsoft.CodeDom.CodeCatchClauseCollection'/> contains the specified <see cref='Microsoft.CodeDom.CodeCatchClause'/>.</para> 120/// <para>Copies the <see cref='Microsoft.CodeDom.CodeCatchClauseCollection'/> values to a one-dimensional <see cref='System.Array'/> instance at the 130/// the <see cref='Microsoft.CodeDom.CodeCatchClauseCollection'/> .</para> 138/// <para>Inserts a <see cref='Microsoft.CodeDom.CodeCatchClause'/> into the <see cref='Microsoft.CodeDom.CodeCatchClauseCollection'/> at the specified index.</para> 147/// <see cref='Microsoft.CodeDom.CodeCatchClauseCollection'/> .</para>
FrameworkFork\Microsoft.CodeDom\System\CodeTryCatchFinallyStatement.cs (2)
26private CodeCatchClauseCollection _catchClauses = new CodeCatchClauseCollection(); 81public CodeCatchClauseCollection CatchClauses