4 instantiations of CodeCatchClause
System.Data (1)
fx\src\data\System\Data\CodeGen\datacache.cs (1)
1560CodeCatchClause ccc = new CodeCatchClause();
System.Management (2)
WmiGenerator.cs (2)
6680CodeCatchClause catchblock = new CodeCatchClause(exceptVar); 7711CodeCatchClause catchblock = new CodeCatchClause(exceptVar);
XamlBuildTask (1)
Microsoft\Build\Tasks\Xaml\ClassGenerator.cs (1)
1252CodeCatchClause catchClause = new CodeCatchClause();
34 references to CodeCatchClause
System (27)
compmod\microsoft\csharp\csharpcodeprovider.cs (2)
1503CodeCatchClause current = (CodeCatchClause)en.Current;
compmod\microsoft\visualbasic\VBCodeProvider.cs (2)
1571CodeCatchClause current = (CodeCatchClause)en.Current;
compmod\system\codedom\CodeCatchClause.cs (1)
32/// Initializes an instance of <see cref='System.CodeDom.CodeCatchClause'/>.
compmod\system\codedom\CodeCatchClauseCollection.cs (18)
17/// A collection that stores <see cref='System.CodeDom.CodeCatchClause'/> objects. 46/// Initializes a new instance of <see cref='System.CodeDom.CodeCatchClauseCollection'/> containing any array of <see cref='System.CodeDom.CodeCatchClause'/> objects. 49public CodeCatchClauseCollection(CodeCatchClause[] value) { 54/// <para>Represents the entry at the specified index of the <see cref='System.CodeDom.CodeCatchClause'/>.</para> 56public CodeCatchClause this[int index] { 58return ((CodeCatchClause)(List[index])); 66/// <para>Adds a <see cref='System.CodeDom.CodeCatchClause'/> with the specified value to the 69public int Add(CodeCatchClause value) { 76public void AddRange(CodeCatchClause[] value) { 102/// <see cref='System.CodeDom.CodeCatchClauseCollection'/> contains the specified <see cref='System.CodeDom.CodeCatchClause'/>.</para> 104public bool Contains(CodeCatchClause value) { 112public void CopyTo(CodeCatchClause[] array, int index) { 117/// <para>Returns the index of a <see cref='System.CodeDom.CodeCatchClause'/> in 120public int IndexOf(CodeCatchClause value) { 125/// <para>Inserts a <see cref='System.CodeDom.CodeCatchClause'/> into the <see cref='System.CodeDom.CodeCatchClauseCollection'/> at the specified index.</para> 127public void Insert(int index, CodeCatchClause value) { 132/// <para> Removes a specific <see cref='System.CodeDom.CodeCatchClause'/> from the 135public void Remove(CodeCatchClause value) {
compmod\system\codedom\CodeTryCatchFinallyStatement.cs (2)
45public CodeTryCatchFinallyStatement(CodeStatement[] tryStatements, CodeCatchClause[] catchClauses) { 56public CodeTryCatchFinallyStatement(CodeStatement[] tryStatements, CodeCatchClause[] catchClauses, CodeStatement[] finallyStatements) {
compmod\system\codedom\compiler\CodeValidator.cs (2)
453CodeCatchClause current = (CodeCatchClause)en.Current;
System.Data (4)
fx\src\data\System\Data\CodeGen\datacache.cs (4)
1552 private static CodeStatement Try(CodeStatement tryStmnt, CodeCatchClause catchClause) { 1555 new CodeCatchClause[] {catchClause} 1559 private static CodeCatchClause Catch(Type type, string name, CodeStatement catchStmnt) { 1560CodeCatchClause ccc = new CodeCatchClause();
System.Management (2)
WmiGenerator.cs (2)
6680CodeCatchClause catchblock = new CodeCatchClause(exceptVar); 7711CodeCatchClause catchblock = new CodeCatchClause(exceptVar);
XamlBuildTask (1)
Microsoft\Build\Tasks\Xaml\ClassGenerator.cs (1)
1252CodeCatchClause catchClause = new CodeCatchClause();