0 out of 1 rated this helpful - Rate this topic

CodeMemberMethod Class

Represents a declaration for a method of a type.

Namespace:  System.CodeDom
Assembly:  System (in System.dll)
[SerializableAttribute]
[ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch)]
[ComVisibleAttribute(true)]
public class CodeMemberMethod : CodeTypeMember

The CodeMemberMethod type exposes the following members.

  Name Description
Public method CodeMemberMethod Initializes a new instance of the CodeMemberMethod class.
Top
  Name Description
Public property Attributes Gets or sets the attributes of the member. (Inherited from CodeTypeMember.)
Public property Comments Gets the collection of comments for the type member. (Inherited from CodeTypeMember.)
Public property CustomAttributes Gets or sets the custom attributes of the member. (Inherited from CodeTypeMember.)
Public property EndDirectives Gets the end directives for the member. (Inherited from CodeTypeMember.)
Public property ImplementationTypes Gets the data types of the interfaces implemented by this method, unless it is a private method implementation, which is indicated by the PrivateImplementationType property.
Public property LinePragma Gets or sets the line on which the type member statement occurs. (Inherited from CodeTypeMember.)
Public property Name Gets or sets the name of the member. (Inherited from CodeTypeMember.)
Public property Parameters Gets the parameter declarations for the method.
Public property PrivateImplementationType Gets or sets the data type of the interface this method, if private, implements a method of, if any.
Public property ReturnType Gets or sets the data type of the return value of the method.
Public property ReturnTypeCustomAttributes Gets the custom attributes of the return type of the method.
Public property StartDirectives Gets the start directives for the member. (Inherited from CodeTypeMember.)
Public property Statements Gets the statements within the method.
Public property TypeParameters Gets the type parameters for the current generic method.
Public property UserData Gets the user-definable data for the current object. (Inherited from CodeObject.)
Top
  Name Description
Public method Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method ToString Returns a string that represents the current object. (Inherited from Object.)
Top
  Name Description
Public event PopulateImplementationTypes An event that will be raised the first time the ImplementationTypes collection is accessed.
Public event PopulateParameters An event that will be raised the first time the Parameters collection is accessed.
Public event PopulateStatements An event that will be raised the first time the Statements collection is accessed.
Top

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;
//    }


.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ