4 instantiations of CodeCatchClause
System.Data (1)
fx\src\data\System\Data\CodeGen\datacache.cs (1)
1560
CodeCatchClause ccc = new
CodeCatchClause
();
System.Management (2)
WmiGenerator.cs (2)
6680
CodeCatchClause catchblock = new
CodeCatchClause
(exceptVar);
7711
CodeCatchClause catchblock = new
CodeCatchClause
(exceptVar);
XamlBuildTask (1)
Microsoft\Build\Tasks\Xaml\ClassGenerator.cs (1)
1252
CodeCatchClause catchClause = new
CodeCatchClause
();
34 references to CodeCatchClause
System (27)
compmod\microsoft\csharp\csharpcodeprovider.cs (2)
1503
CodeCatchClause
current = (
CodeCatchClause
)en.Current;
compmod\microsoft\visualbasic\VBCodeProvider.cs (2)
1571
CodeCatchClause
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.
49
public CodeCatchClauseCollection(
CodeCatchClause
[] value) {
54
/// <para>Represents the entry at the specified index of the <see cref='System.CodeDom.
CodeCatchClause
'/>.</para>
56
public
CodeCatchClause
this[int index] {
58
return ((
CodeCatchClause
)(List[index]));
66
/// <para>Adds a <see cref='System.CodeDom.
CodeCatchClause
'/> with the specified value to the
69
public int Add(
CodeCatchClause
value) {
76
public void AddRange(
CodeCatchClause
[] value) {
102
/// <see cref='System.CodeDom.CodeCatchClauseCollection'/> contains the specified <see cref='System.CodeDom.
CodeCatchClause
'/>.</para>
104
public bool Contains(
CodeCatchClause
value) {
112
public void CopyTo(
CodeCatchClause
[] array, int index) {
117
/// <para>Returns the index of a <see cref='System.CodeDom.
CodeCatchClause
'/> in
120
public 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>
127
public void Insert(int index,
CodeCatchClause
value) {
132
/// <para> Removes a specific <see cref='System.CodeDom.
CodeCatchClause
'/> from the
135
public void Remove(
CodeCatchClause
value) {
compmod\system\codedom\CodeTryCatchFinallyStatement.cs (2)
45
public CodeTryCatchFinallyStatement(CodeStatement[] tryStatements,
CodeCatchClause
[] catchClauses) {
56
public CodeTryCatchFinallyStatement(CodeStatement[] tryStatements,
CodeCatchClause
[] catchClauses, CodeStatement[] finallyStatements) {
compmod\system\codedom\compiler\CodeValidator.cs (2)
453
CodeCatchClause
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) {
1560
CodeCatchClause
ccc = new CodeCatchClause();
System.Management (2)
WmiGenerator.cs (2)
6680
CodeCatchClause
catchblock = new CodeCatchClause(exceptVar);
7711
CodeCatchClause
catchblock = new CodeCatchClause(exceptVar);
XamlBuildTask (1)
Microsoft\Build\Tasks\Xaml\ClassGenerator.cs (1)
1252
CodeCatchClause
catchClause = new CodeCatchClause();