CodeMemberMethod Class
.NET Framework 3.0
Represents a declaration for a method of a type.
Namespace: System.CodeDom
Assembly: System (in system.dll)
Assembly: System (in system.dll)
[SerializableAttribute] [ComVisibleAttribute(true)] [ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch)] public class CodeMemberMethod : CodeTypeMember
/** @attribute SerializableAttribute() */ /** @attribute ComVisibleAttribute(true) */ /** @attribute ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch) */ public class CodeMemberMethod extends CodeTypeMember
SerializableAttribute ComVisibleAttribute(true) ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch) public class CodeMemberMethod extends CodeTypeMember
Not applicable.
CodeMemberMethod can be used to represent the declaration for a method.
The ReturnType property specifies the data type of the method's return value. The Parameters property contains the method's parameters. The Statements property contains the statements of the method.
The following example demonstrates use of a CodeMemberMethod to declare a method that accepts a parameter and returns a value.
// Defines a method that returns a string passed to it. CodeMemberMethod method1 = new CodeMemberMethod(); method1.Name = "ReturnString"; method1.ReturnType = new CodeTypeReference("System.String"); method1.Parameters.Add( new CodeParameterDeclarationExpression("System.String", "text") ); method1.Statements.Add( new CodeMethodReturnStatement( new CodeArgumentReferenceExpression("text") ) ); // A C# code generator produces the following source code for the preceeding example code: // private string ReturnString(string text) // { // return text; // }
// Defines a method that returns a string passed to it.
CodeMemberMethod method1 = new CodeMemberMethod();
method1.set_Name("ReturnString");
method1.set_ReturnType(new CodeTypeReference("System.String"));
method1.get_Parameters().Add(new CodeParameterDeclarationExpression(
"System.String", "text"));
method1.get_Statements().Add(new CodeMethodReturnStatement(new
CodeArgumentReferenceExpression("text")));
// A VJ# code generator produces the following source code for
// the preceeding example code:
// private String ReturnString(String text)
// {
// return text;
// } //ReturnString
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: