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

Generates code for the specified CodeDOM based literal expression representation.

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

Parameters

e
A CodeLiteralExpression that indicates the expression to generate code for.

See Also

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