CodeThisReferenceExpression Class
.NET Framework 2.0
Represents a reference to the current local class instance.
Namespace: System.CodeDom
Assembly: System (in system.dll)
Assembly: System (in system.dll)
'Declaration <SerializableAttribute> _ <ComVisibleAttribute(True)> _ <ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch)> _ Public Class CodeThisReferenceExpression Inherits CodeExpression 'Usage Dim instance As CodeThisReferenceExpression
/** @attribute SerializableAttribute() */ /** @attribute ComVisibleAttribute(true) */ /** @attribute ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch) */ public class CodeThisReferenceExpression extends CodeExpression
SerializableAttribute ComVisibleAttribute(true) ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch) public class CodeThisReferenceExpression extends CodeExpression
Not applicable.
The following example code demonstrates use of a CodeThisReferenceExpression to refer to the current object.
' Invokes the TestMethod method of the current type object. Dim methodRef1 As New CodeMethodReferenceExpression(New CodeThisReferenceExpression(), "TestMethod") Dim invoke1 As New CodeMethodInvokeExpression(methodRef1, New CodeParameterDeclarationExpression() {}) ' A Visual Basic code generator produces the following source code for the preceeding example code: ' Me.TestMethod
// Invokes the TestMethod method of the current type object.
CodeMethodReferenceExpression methodRef1 = new
CodeMethodReferenceExpression(new CodeThisReferenceExpression(),
"TestMethod");
CodeMethodInvokeExpression invoke1 = new
CodeMethodInvokeExpression(methodRef1, new
CodeParameterDeclarationExpression[]{});
// A VJ# code generator produces the following source code for the
// preceeding example code:
// this.TestMethod();
System.Object
System.CodeDom.CodeObject
System.CodeDom.CodeExpression
System.CodeDom.CodeThisReferenceExpression
System.CodeDom.CodeObject
System.CodeDom.CodeExpression
System.CodeDom.CodeThisReferenceExpression
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: