CodeMemberMethod Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents a declaration for a method of a type.
public ref class CodeMemberMethod : System::CodeDom::CodeTypeMember
public class CodeMemberMethod : System.CodeDom.CodeTypeMember
[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)]
[System.Runtime.InteropServices.ComVisible(true)]
[System.Serializable]
public class CodeMemberMethod : System.CodeDom.CodeTypeMember
type CodeMemberMethod = class
inherit CodeTypeMember
[<System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)>]
[<System.Runtime.InteropServices.ComVisible(true)>]
[<System.Serializable>]
type CodeMemberMethod = class
inherit CodeTypeMember
Public Class CodeMemberMethod
Inherits CodeTypeMember
- Inheritance
- Derived
- Attributes
Examples
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 = gcnew CodeMemberMethod;
method1->Name = "ReturnString";
method1->ReturnType = gcnew CodeTypeReference( "System.String" );
method1->Parameters->Add( gcnew CodeParameterDeclarationExpression( "System.String","text" ) );
method1->Statements->Add( gcnew CodeMethodReturnStatement( gcnew 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.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.
Dim method1 As 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 Visual Basic code generator produces the following source code for the preceeding example code:
' Private Function ReturnString(ByVal [text] As String) As String
' Return [Text]
' End Function
Remarks
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.
Constructors
CodeMemberMethod() |
Initializes a new instance of the CodeMemberMethod class. |
Properties
Attributes |
Gets or sets the attributes of the member. (Inherited from CodeTypeMember) |
Comments |
Gets the collection of comments for the type member. (Inherited from CodeTypeMember) |
CustomAttributes |
Gets or sets the custom attributes of the member. (Inherited from CodeTypeMember) |
EndDirectives |
Gets the end directives for the member. (Inherited from CodeTypeMember) |
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. |
LinePragma |
Gets or sets the line on which the type member statement occurs. (Inherited from CodeTypeMember) |
Name |
Gets or sets the name of the member. (Inherited from CodeTypeMember) |
Parameters |
Gets the parameter declarations for the method. |
PrivateImplementationType |
Gets or sets the data type of the interface this method, if private, implements a method of, if any. |
ReturnType |
Gets or sets the data type of the return value of the method. |
ReturnTypeCustomAttributes |
Gets the custom attributes of the return type of the method. |
StartDirectives |
Gets the start directives for the member. (Inherited from CodeTypeMember) |
Statements |
Gets the statements within the method. |
TypeParameters |
Gets the type parameters for the current generic method. |
UserData |
Gets the user-definable data for the current object. (Inherited from CodeObject) |
Methods
Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
GetHashCode() |
Serves as the default hash function. (Inherited from Object) |
GetType() |
Gets the Type of the current instance. (Inherited from Object) |
MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
ToString() |
Returns a string that represents the current object. (Inherited from Object) |
Events
PopulateImplementationTypes |
An event that will be raised the first time the ImplementationTypes collection is accessed. |
PopulateParameters |
An event that will be raised the first time the Parameters collection is accessed. |
PopulateStatements |
An event that will be raised the first time the Statements collection is accessed. |