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!

CodeGenerator.GenerateTryCatchFinallyStatement

Generates code for the specified CodeDOM based try catch finally statement representation.

[Visual Basic]
MustOverride Protected Sub GenerateTryCatchFinallyStatement( _
   ByVal e As CodeTryCatchFinallyStatement _
)
[C#]
protected abstract void GenerateTryCatchFinallyStatement(
   CodeTryCatchFinallyStatement e
);
[C++]
protected: virtual void GenerateTryCatchFinallyStatement(
   CodeTryCatchFinallyStatement* e
) = 0;
[JScript]
protected abstract function GenerateTryCatchFinallyStatement(
   e : CodeTryCatchFinallyStatement
);

Parameters

e
A CodeTryCatchFinallyStatement that indicates the statement to generate code for.

See Also

CodeGenerator Class | CodeGenerator Members | System.CodeDOM.Compiler Namespace | CodeTryCatchFinallyStatement