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[], CodeStatement[])

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

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

Parameters

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

See Also

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