MethodBase Class

Expand
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
This topic has not yet been rated - Rate this topic
.NET Framework Class Library

MethodBase Class

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Provides information about methods and constructors.

Namespace:  System.Reflection
Assembly:  mscorlib (in mscorlib.dll)

[SerializableAttribute]
[ComVisibleAttribute(true)]
[ClassInterfaceAttribute(ClassInterfaceType.None)]
[PermissionSetAttribute(SecurityAction.InheritanceDemand, Name = "FullTrust")]
public abstract class MethodBase : MemberInfo, 
	_MethodBase

The MethodBase type exposes the following members.

  Name Description
Protected method Supported by the XNA Framework MethodBase Initializes a new instance of the MethodBase class.
Top
  Name Description
Public property Supported by the XNA Framework Supported by Portable Class Library Attributes Gets the attributes associated with this method.
Public property Supported by the XNA Framework Supported by Portable Class Library CallingConvention Gets a value indicating the calling conventions for this method.
Public property Supported by the XNA Framework Supported by Portable Class Library ContainsGenericParameters Gets a value indicating whether the generic method contains unassigned generic type parameters.
Public property CustomAttributes Gets a collection that contains this member's custom attributes. (Inherited from MemberInfo.)
Public property Supported by the XNA Framework Supported by Portable Class Library DeclaringType Gets the class that declares this member. (Inherited from MemberInfo.)
Public property Supported by the XNA Framework Supported by Portable Class Library IsAbstract Gets a value indicating whether the method is abstract.
Public property Supported by the XNA Framework Supported by Portable Class Library IsAssembly Gets a value indicating whether the potential visibility of this method or constructor is described by MethodAttributes.Assembly; that is, the method or constructor is visible at most to other types in the same assembly, and is not visible to derived types outside the assembly.
Public property Supported by the XNA Framework Supported by Portable Class Library IsConstructor Gets a value indicating whether the method is a constructor.
Public property Supported by the XNA Framework Supported by Portable Class Library IsFamily Gets a value indicating whether the visibility of this method or constructor is described by MethodAttributes.Family; that is, the method or constructor is visible only within its class and derived classes.
Public property Supported by the XNA Framework Supported by Portable Class Library IsFamilyAndAssembly Gets a value indicating whether the visibility of this method or constructor is described by MethodAttributes.FamANDAssem; that is, the method or constructor can be called by derived classes, but only if they are in the same assembly.
Public property Supported by the XNA Framework Supported by Portable Class Library IsFamilyOrAssembly Gets a value indicating whether the potential visibility of this method or constructor is described by MethodAttributes.FamORAssem; that is, the method or constructor can be called by derived classes wherever they are, and by classes in the same assembly.
Public property Supported by the XNA Framework Supported by Portable Class Library IsFinal Gets a value indicating whether this method is final.
Public property Supported by the XNA Framework Supported by Portable Class Library IsGenericMethod Gets a value indicating whether the method is generic.
Public property Supported by the XNA Framework Supported by Portable Class Library IsGenericMethodDefinition Gets a value indicating whether the method is a generic method definition.
Public property Supported by the XNA Framework Supported by Portable Class Library IsHideBySig Gets a value indicating whether only a member of the same kind with exactly the same signature is hidden in the derived class.
Public property Supported by the XNA Framework Supported by Portable Class Library IsPrivate Gets a value indicating whether this member is private.
Public property Supported by the XNA Framework Supported by Portable Class Library IsPublic Gets a value indicating whether this is a public method.
Public property IsSecurityCritical Gets a value that indicates whether the current method or constructor is security-critical or security-safe-critical at the current trust level, and therefore can perform critical operations.
Public property IsSecuritySafeCritical Gets a value that indicates whether the current method or constructor is security-safe-critical at the current trust level; that is, whether it can perform critical operations and can be accessed by transparent code.
Public property IsSecurityTransparent Gets a value that indicates whether the current method or constructor is transparent at the current trust level, and therefore cannot perform critical operations.
Public property Supported by the XNA Framework Supported by Portable Class Library IsSpecialName Gets a value indicating whether this method has a special name.
Public property Supported by the XNA Framework Supported by Portable Class Library IsStatic Gets a value indicating whether the method is static.
Public property Supported by the XNA Framework Supported by Portable Class Library IsVirtual Gets a value indicating whether the method is virtual.
Public property Supported by the XNA Framework MemberType When overridden in a derived class, gets a MemberTypes value indicating the type of the member — method, constructor, event, and so on. (Inherited from MemberInfo.)
Public property MetadataToken Gets a value that identifies a metadata element. (Inherited from MemberInfo.)
Public property Supported by the XNA Framework Supported by Portable Class Library MethodHandle Gets a handle to the internal metadata representation of a method.
Public property MethodImplementationFlags Gets the MethodImplAttributes flags that specify the attributes of a method implementation.
Public property Module Gets the module in which the type that declares the member represented by the current MemberInfo is defined. (Inherited from MemberInfo.)
Public property Supported by the XNA Framework Supported by Portable Class Library Name Gets the name of the current member. (Inherited from MemberInfo.)
Public property Supported by the XNA Framework Supported by Portable Class Library ReflectedType Gets the class object that was used to obtain this instance of MemberInfo. (Inherited from MemberInfo.)
Top
  Name Description
Public method Supported by the XNA Framework Supported by Portable Class Library Equals Returns a value that indicates whether this instance is equal to a specified object. (Overrides MemberInfo.Equals(Object).)

In XNA Framework 3.0, this member is inherited from Object.Equals(Object).


In Portable Class Library Portable Class Library, this member is inherited from Object.Equals(Object).
Protected method Supported by the XNA Framework Supported by Portable Class Library 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 Static member GetCurrentMethod Returns a MethodBase object representing the currently executing method.
Public method Supported by the XNA Framework Supported by Portable Class Library GetCustomAttributes(Boolean) When overridden in a derived class, returns an array of all custom attributes applied to this member. (Inherited from MemberInfo.)
Public method Supported by the XNA Framework Supported by Portable Class Library GetCustomAttributes(Type, Boolean) When overridden in a derived class, returns an array of custom attributes applied to this member and identified by Type. (Inherited from MemberInfo.)
Public method GetCustomAttributesData Returns a list of CustomAttributeData objects representing data about the attributes that have been applied to the target member. (Inherited from MemberInfo.)
Public method Supported by the XNA Framework Supported by Portable Class Library GetGenericArguments Returns an array of Type objects that represent the type arguments of a generic method or the type parameters of a generic method definition.
Public method Supported by the XNA Framework Supported by Portable Class Library GetHashCode Returns the hash code for this instance. (Overrides MemberInfo.GetHashCode.)

In XNA Framework 3.0, this member is inherited from Object.GetHashCode.


In Portable Class Library Portable Class Library, this member is inherited from Object.GetHashCode.
Public method GetMethodBody When overridden in a derived class, gets a MethodBody object that provides access to the MSIL stream, local variables, and exceptions for the current method.
Public method Static member Supported by the XNA Framework Supported by Portable Class Library GetMethodFromHandle(RuntimeMethodHandle) Gets method information by using the method's internal metadata representation (handle).
Public method Static member Supported by the XNA Framework Supported by Portable Class Library GetMethodFromHandle(RuntimeMethodHandle, RuntimeTypeHandle) Gets a MethodBase object for the constructor or method represented by the specified handle, for the specified generic type.
Public method GetMethodImplementationFlags When overridden in a derived class, returns the MethodImplAttributes flags.
Public method Supported by the XNA Framework Supported by Portable Class Library GetParameters When overridden in a derived class, gets the parameters of the specified method or constructor.
Public method Supported by the XNA Framework Supported by Portable Class Library GetType Gets the Type of the current instance. (Inherited from Object.)
Public method Supported by the XNA Framework Supported by Portable Class Library Invoke(Object, Object()) Invokes the method or constructor represented by the current instance, using the specified parameters.
Public method Supported by the XNA Framework Invoke(Object, BindingFlags, Binder, Object(), CultureInfo) When overridden in a derived class, invokes the reflected method or constructor with the given parameters.
Public method Supported by the XNA Framework Supported by Portable Class Library IsDefined When overridden in a derived class, indicates whether one or more attributes of the specified type or of its derived types is applied to this member. (Inherited from MemberInfo.)
Protected method Supported by the XNA Framework Supported by Portable Class Library MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method Supported by the XNA Framework Supported by Portable Class Library ToString Returns a string that represents the current object. (Inherited from Object.)
Top
  Name Description
Public operator Static member Equality Indicates whether two MethodBase objects are equal.
Public operator Static member Inequality Indicates whether two MethodBase objects are not equal.
Top
  Name Description
Public Extension Method GetCustomAttribute(Type) Overloaded. Retrieves a custom attribute of a specified type that is applied to a specified member. (Defined by CustomAttributeExtensions.)
Public Extension Method GetCustomAttribute(Type, Boolean) Overloaded. Retrieves a custom attribute of a specified type that is applied to a specified member, and optionally inspects the ancestors of that member. (Defined by CustomAttributeExtensions.)
Public Extension Method GetCustomAttribute(Of T) Overloaded. Retrieves a custom attribute of a specified type that is applied to a specified member. (Defined by CustomAttributeExtensions.)
Public Extension Method GetCustomAttribute(Of T)(Boolean) Overloaded. Retrieves a custom attribute of a specified type that is applied to a specified member, and optionally inspects the ancestors of that member. (Defined by CustomAttributeExtensions.)
Public Extension Method GetCustomAttributes Overloaded. Retrieves a collection of custom attributes that are applied to a specified member. (Defined by CustomAttributeExtensions.)
Public Extension Method GetCustomAttributes(Type) Overloaded. Retrieves a collection of custom attributes of a specified type that are applied to a specified member. (Defined by CustomAttributeExtensions.)
Public Extension Method GetCustomAttributes(Of T) Overloaded. Retrieves a collection of custom attributes of a specified type that are applied to a specified member. (Defined by CustomAttributeExtensions.)
Public Extension Method GetCustomAttributes(Of T)(Boolean) Overloaded. Retrieves a collection of custom attributes of a specified type that are applied to a specified member, and optionally inspects the ancestors of that member. (Defined by CustomAttributeExtensions.)
Public Extension Method IsDefined Indicates whether custom attributes of a specified type are applied to a specified member. (Defined by CustomAttributeExtensions.)
Top
  Name Description
Explicit interface implemetation Private method _MemberInfo.GetIDsOfNames Maps a set of names to a corresponding set of dispatch identifiers. (Inherited from MemberInfo.)
Explicit interface implemetation Private method _MemberInfo.GetType Gets a Type object representing the MemberInfo class. (Inherited from MemberInfo.)
Explicit interface implemetation Private method _MemberInfo.GetTypeInfo Retrieves the type information for an object, which can then be used to get the type information for an interface. (Inherited from MemberInfo.)
Explicit interface implemetation Private method _MemberInfo.GetTypeInfoCount Retrieves the number of type information interfaces that an object provides (either 0 or 1). (Inherited from MemberInfo.)
Explicit interface implemetation Private method _MemberInfo.Invoke Provides access to properties and methods exposed by an object. (Inherited from MemberInfo.)
Explicit interface implemetation Private method _MethodBase.GetIDsOfNames Maps a set of names to a corresponding set of dispatch identifiers.
Explicit interface implemetation Private method _MethodBase.GetType For a description of this member, see _MethodBase.GetType.
Explicit interface implemetation Private method _MethodBase.GetTypeInfo Retrieves the type information for an object, which can then be used to get the type information for an interface.
Explicit interface implemetation Private method _MethodBase.GetTypeInfoCount Retrieves the number of type information interfaces that an object provides (either 0 or 1).
Explicit interface implemetation Private method _MethodBase.Invoke Provides access to properties and methods exposed by an object.
Explicit interface implemetation Private property _MethodBase.IsAbstract For a description of this member, see _MethodBase.IsAbstract.
Explicit interface implemetation Private property _MethodBase.IsAssembly For a description of this member, see _MethodBase.IsAssembly.
Explicit interface implemetation Private property _MethodBase.IsConstructor For a description of this member, see _MethodBase.IsConstructor.
Explicit interface implemetation Private property _MethodBase.IsFamily For a description of this member, see _MethodBase.IsFamily.
Explicit interface implemetation Private property _MethodBase.IsFamilyAndAssembly For a description of this member, see _MethodBase.IsFamilyAndAssembly.
Explicit interface implemetation Private property _MethodBase.IsFamilyOrAssembly For a description of this member, see _MethodBase.IsFamilyOrAssembly.
Explicit interface implemetation Private property _MethodBase.IsFinal For a description of this member, see _MethodBase.IsFinal.
Explicit interface implemetation Private property _MethodBase.IsHideBySig For a description of this member, see _MethodBase.IsHideBySig.
Explicit interface implemetation Private property _MethodBase.IsPrivate For a description of this member, see _MethodBase.IsPrivate.
Explicit interface implemetation Private property _MethodBase.IsPublic For a description of this member, see _MethodBase.IsPublic.
Explicit interface implemetation Private property _MethodBase.IsSpecialName For a description of this member, see _MethodBase.IsSpecialName.
Explicit interface implemetation Private property _MethodBase.IsStatic For a description of this member, see _MethodBase.IsStatic.
Explicit interface implemetation Private property _MethodBase.IsVirtual For a description of this member, see _MethodBase.IsVirtual.
Top

.NET Framework

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

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Portable Class Library

Supported in: Portable Class Library

Windows 8 Release Preview, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 SP2, Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

This type is thread safe.

Did you find this helpful?
(1500 characters remaining)