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.GenerateThrowExceptionStatement

Generates code for the specified CodeDOM based throw exception statement representation.

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

Parameters

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

See Also

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