CodeSnippetExpression Class
.NET Framework 3.0
Represents a literal expression.
Namespace: System.CodeDom
Assembly: System (in system.dll)
Assembly: System (in system.dll)
[SerializableAttribute] [ComVisibleAttribute(true)] [ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch)] public class CodeSnippetExpression : CodeExpression
/** @attribute SerializableAttribute() */ /** @attribute ComVisibleAttribute(true) */ /** @attribute ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch) */ public class CodeSnippetExpression extends CodeExpression
SerializableAttribute ComVisibleAttribute(true) ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch) public class CodeSnippetExpression extends CodeExpression
Not applicable.
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.
The following code example demonstrates how to create an instance of the CodeSnippetExpression class using a literal code fragment.
// 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");
// 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");
System.Object
System.CodeDom.CodeObject
System.CodeDom.CodeExpression
System.CodeDom.CodeSnippetExpression
System.CodeDom.CodeObject
System.CodeDom.CodeExpression
System.CodeDom.CodeSnippetExpression
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: