NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

CodeTryCatchFinallyStatement Constructor (CodeStatement[], CodeCatchClause[])

Initializes a new instance of CodeTryCatchFinallyStatement. using the specified statements to try and catch clauses.

[Visual Basic]
Overloads Public Sub New( _
   ByVal tryStatements() As CodeStatement, _
   ByVal catchClauses() As CodeCatchClause _
)
[C#]
public CodeTryCatchFinallyStatement(
   CodeStatement[] tryStatements,
   CodeCatchClause[] catchClauses
);
[C++]
public: CodeTryCatchFinallyStatement(
   CodeStatement* tryStatements[],
   CodeCatchClause* catchClauses[]
);
[JScript]
public function CodeTryCatchFinallyStatement(
   tryStatements : CodeStatement[],
   catchClauses : CodeCatchClause[]
);

Parameters

tryStatements
The statements to try.
catchClauses
[To be supplied.]

See Also

CodeTryCatchFinallyStatement Class | CodeTryCatchFinallyStatement Members | System.CodeDOM Namespace | CodeTryCatchFinallyStatement Constructor Overload List