DynamicMethod Constructor (String, MethodAttributes, CallingConventions, Type, Type[], Type, Boolean)
Silverlight
This member can be used only by trusted applications. If you try to use this member in a partial-trust application, your code will throw a MethodAccessException exception. This member is security-critical, which restricts its use.
Assembly: mscorlib (in mscorlib.dll)
[SECURITY CRITICAL]
Namespace:
System.Reflection.EmitCreates a dynamic method, specifying the method name, attributes, calling convention, return type, parameter types, the type with which the dynamic method is logically associated, and whether just-in-time (JIT) visibility checks should be skipped for types and members accessed by the Microsoft intermediate language (MSIL) of the dynamic method.
Assembly: mscorlib (in mscorlib.dll)
[SecurityCriticalAttribute] public DynamicMethod( string name, MethodAttributes attributes, CallingConventions callingConvention, Type returnType, Type[] parameterTypes, Type owner, bool skipVisibility )
Parameters
- name
- Type: System.String
The name of the dynamic method. This can be a zero-length string, but it cannot be null.
- attributes
- Type: System.Reflection.MethodAttributes
A bitwise combination of MethodAttributes values that specifies the attributes of the dynamic method. The only combination allowed is Public and Static.
- callingConvention
- Type: System.Reflection.CallingConventions
The calling convention for the dynamic method. Must be Standard.
- returnType
- Type: System.Type
A Type object that specifies the return type of the dynamic method, or null 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 null 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.
- skipVisibility
- Type: System.Boolean
true to skip JIT visibility checks on types and members accessed by the MSIL of the dynamic method; otherwise, false.
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.