29 references to CodeCatchClause
dotnet-svcutil-lib (29)
CodeDomFixup\CodeDomVisitors\CodeDomVisitor.cs (4)
134protected override void Visit(CodeCatchClause clause) 527else if (obj is CodeCatchClause) 528Visit((CodeCatchClause)obj); 538protected virtual void Visit(CodeCatchClause clause) { }
FrameworkFork\Microsoft.CodeDom\Compiler\CodeValidator.cs (2)
563CodeCatchClause current = (CodeCatchClause)en.Current;
FrameworkFork\Microsoft.CodeDom\Microsoft\CSharpCodeProvider.cs (2)
1683CodeCatchClause current = (CodeCatchClause)en.Current;
FrameworkFork\Microsoft.CodeDom\System\CodeCatchClause.cs (1)
29/// Initializes an instance of <see cref='Microsoft.CodeDom.CodeCatchClause'/>.
FrameworkFork\Microsoft.CodeDom\System\CodeCatchClauseCollection.cs (18)
14/// A collection that stores <see cref='Microsoft.CodeDom.CodeCatchClause'/> objects. 45/// Initializes a new instance of <see cref='Microsoft.CodeDom.CodeCatchClauseCollection'/> containing any array of <see cref='Microsoft.CodeDom.CodeCatchClause'/> objects. 48public CodeCatchClauseCollection(CodeCatchClause[] value) 54/// <para>Represents the entry at the specified index of the <see cref='Microsoft.CodeDom.CodeCatchClause'/>.</para> 56public CodeCatchClause this[int index] 60return ((CodeCatchClause)(List[index])); 69/// <para>Adds a <see cref='Microsoft.CodeDom.CodeCatchClause'/> with the specified value to the 72public int Add(CodeCatchClause value) 80public void AddRange(CodeCatchClause[] value) 112/// <see cref='Microsoft.CodeDom.CodeCatchClauseCollection'/> contains the specified <see cref='Microsoft.CodeDom.CodeCatchClause'/>.</para> 114public bool Contains(CodeCatchClause value) 123public void CopyTo(CodeCatchClause[] array, int index) 129/// <para>Returns the index of a <see cref='Microsoft.CodeDom.CodeCatchClause'/> in 132public int IndexOf(CodeCatchClause value) 138/// <para>Inserts a <see cref='Microsoft.CodeDom.CodeCatchClause'/> into the <see cref='Microsoft.CodeDom.CodeCatchClauseCollection'/> at the specified index.</para> 140public void Insert(int index, CodeCatchClause value) 146/// <para> Removes a specific <see cref='Microsoft.CodeDom.CodeCatchClause'/> from the 149public void Remove(CodeCatchClause value)
FrameworkFork\Microsoft.CodeDom\System\CodeTryCatchFinallyStatement.cs (2)
43public CodeTryCatchFinallyStatement(CodeStatement[] tryStatements, CodeCatchClause[] catchClauses) 55public CodeTryCatchFinallyStatement(CodeStatement[] tryStatements, CodeCatchClause[] catchClauses, CodeStatement[] finallyStatements)