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