DynamicMethod Constructor (String, Type, Type(), Type)
For apps that target Windows Phone OS 7.0 and 7.1, do not use this member in your app. If you do, your code will throw a MethodAccessException. This member is security-critical, which restricts it to internal use by the .NET Framework for Windows Phone class library.
Assembly: mscorlib (in mscorlib.dll)
[SECURITY CRITICAL]
Namespace:
System.Reflection.Emit[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Creates a dynamic method, specifying the method name, return type, parameter types, and the type with which the dynamic method is logically associated.
Assembly: mscorlib (in mscorlib.dll)
'Declaration <SecurityCriticalAttribute> _ Public Sub New ( _ name As String, _ returnType As Type, _ parameterTypes As Type(), _ owner As Type _ )
Parameters
- name
- Type: System.String
The name of the dynamic method. This can be a zero-length string, but it cannot be Nothing.
- returnType
- Type: System.Type
A Type object that specifies the return type of the dynamic method, or Nothing if the method has no return type.
- parameterTypes
- Type:
System.Type
()
An array of Type objects specifying the types of the parameters of the dynamic method, or Nothing if the method has no parameters.
- owner
- Type: System.Type
A Type with which the dynamic method is logically associated. The dynamic method has access to all members of the type.
Show: