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

Initializes a new instance of CodeTryCatchFinallyStatement.

Overload List

Initializes a new instance of CodeTryCatchFinallyStatement.

[Visual Basic] Overloads Public Sub New()
[C#] public CodeTryCatchFinallyStatement();
[C++] public: CodeTryCatchFinallyStatement();
[JScript] public function CodeTryCatchFinallyStatement();

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

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

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

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

See Also

CodeTryCatchFinallyStatement Class | CodeTryCatchFinallyStatement Members | System.CodeDOM Namespace