DynamicMethod Properties
.NET Framework 2.0
| Name | Description | |
|---|---|---|
| Attributes | Overridden. Gets the attributes specified when the dynamic method was created. |
| CallingConvention | Overridden. Gets the calling convention specified when the dynamic method was created. |
| ContainsGenericParameters | Gets a value indicating whether a generic method contains unassigned generic type parameters. (Inherited from MethodInfo.) |
| DeclaringType | Overridden. Gets the type that declares the method, which is always a null reference (Nothing in Visual Basic) for dynamic methods. |
| InitLocals | Gets or sets a value indicating whether the local variables in the method are zero-initialized. |
| IsAbstract | Gets a value indicating whether the method is abstract. (Inherited from MethodBase.) |
| IsAssembly | Gets a value indicating whether this method can be called by other classes in the same assembly. (Inherited from MethodBase.) |
| IsConstructor | Gets a value indicating whether the method is a constructor. (Inherited from MethodBase.) |
| IsFamily | Gets a value indicating whether access to this method is restricted to members of the class and members of its derived classes. (Inherited from MethodBase.) |
| IsFamilyAndAssembly | Gets a value indicating whether this method can be called by derived classes if they are in the same assembly. (Inherited from MethodBase.) |
| IsFamilyOrAssembly | Gets a value indicating whether this method can be called by derived classes, wherever they are, and by all classes in the same assembly. (Inherited from MethodBase.) |
| IsFinal | Gets a value indicating whether this method is final. (Inherited from MethodBase.) |
| IsGenericMethod | Gets a value indicating whether the current method is a generic method. (Inherited from MethodInfo.) |
| IsGenericMethodDefinition | Gets a value indicating whether the current MethodInfo represents the definition of a generic method. (Inherited from MethodInfo.) |
| IsHideBySig | Gets a value indicating whether only a member of the same kind with exactly the same signature is hidden in the derived class. (Inherited from MethodBase.) |
| IsPrivate | Gets a value indicating whether this member is private. (Inherited from MethodBase.) |
| IsPublic | Gets a value indicating whether this is a public method. (Inherited from MethodBase.) |
| IsSpecialName | Gets a value indicating whether this method has a special name. (Inherited from MethodBase.) |
| IsStatic | Gets a value indicating whether the method is static. (Inherited from MethodBase.) |
| IsVirtual | Gets a value indicating whether the method is virtual. (Inherited from MethodBase.) |
| MemberType | Gets a MemberTypes value indicating that this member is a method. (Inherited from MethodInfo.) |
| MetadataToken | Gets a value that identifies a metadata element. (Inherited from MemberInfo.) |
| MethodHandle | Overridden. Not supported for dynamic methods. |
| Module | Overridden. Gets the module with which the dynamic method is logically associated. |
| Name | Overridden. Gets the name of the dynamic method. |
| ReflectedType | Overridden. Gets the class that was used in reflection to obtain the method. |
| ReturnParameter | Overridden. Gets the return parameter of the dynamic method. |
| ReturnType | Overridden. Gets the type of return value for the dynamic method. |
| ReturnTypeCustomAttributes | Overridden. Gets the custom attributes of the return type for the dynamic method. |