CodeSnippetExpression Class
Represents a literal expression.
For a list of all members of this type, see CodeSnippetExpression Members.
System.Object
System.CodeDom.CodeObject
System.CodeDom.CodeExpression
System.CodeDom.CodeSnippetExpression
[Visual Basic] <Serializable> <ClassInterface(ClassInterfaceType.AutoDispatch)> <ComVisible(True)> Public Class CodeSnippetExpression Inherits CodeExpression [C#] [Serializable] [ClassInterface(ClassInterfaceType.AutoDispatch)] [ComVisible(true)] public class CodeSnippetExpression : CodeExpression [C++] [Serializable] [ClassInterface(ClassInterfaceType::AutoDispatch)] [ComVisible(true)] public __gc class CodeSnippetExpression : public CodeExpression [JScript] public Serializable ClassInterface(ClassInterfaceType.AutoDispatch) ComVisible(true) class CodeSnippetExpression extends CodeExpression
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Remarks
A literal expression stores the code of an expression as a literal code fragment. The CodeDOM does not translate literal code fragments. Literal code fragments are stored and output just as they are. CodeDOM objects that contain literal code are provided so developers can encapsulate code that is already in the target language.
The Value property contains the literal code for this snippet expression.
Example
[Visual Basic] ' Creates a CodeSnippetExpression that represents a literal string that ' can be used as an expression in a CodeDOM graph. Dim literalExpression As New CodeSnippetExpression("Literal expression") [C#] // Creates a CodeSnippetExpression that represents a literal string that // can be used as an expression in a CodeDOM graph. CodeSnippetExpression literalExpression = new CodeSnippetExpression("Literal expression"); [C++] // Creates a CodeSnippetExpression that represents a literal string that // can be used as an expression in a CodeDOM graph. CodeSnippetExpression* literalExpression = new CodeSnippetExpression(S"Literal expression");
[JScript] No example is available for JScript. To view a Visual Basic, C#, or C++ example, click the Language Filter button
in the upper-left corner of the page.
Requirements
Namespace: System.CodeDom
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
Assembly: System (in System.dll)