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

Generates code for the specified CodeDOM based literal statement representation.

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

Parameters

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

See Also

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