src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\ModuleBuilder.cs (7)
70public MethodBuilder DefineGlobalMethod(string name, MethodAttributes attributes, Type? returnType, Type[]? parameterTypes)
73public MethodBuilder DefineGlobalMethod(string name, MethodAttributes attributes, CallingConventions callingConvention,
77public MethodBuilder DefineGlobalMethod(string name, MethodAttributes attributes, CallingConventions callingConvention,
88protected abstract MethodBuilder DefineGlobalMethodCore(string name, MethodAttributes attributes, CallingConventions callingConvention,
99MethodAttributes attributes, CallingConventions callingConvention,
106MethodAttributes attributes, CallingConventions callingConvention,
113MethodAttributes attributes, CallingConventions callingConvention,
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\TypeBuilder.cs (15)
49public ConstructorBuilder DefineConstructor(MethodAttributes attributes, CallingConventions callingConvention, Type[]? parameterTypes)
52public ConstructorBuilder DefineConstructor(MethodAttributes attributes, CallingConventions callingConvention,
56protected abstract ConstructorBuilder DefineConstructorCore(MethodAttributes attributes, CallingConventions callingConvention,
59public ConstructorBuilder DefineDefaultConstructor(MethodAttributes attributes)
62protected abstract ConstructorBuilder DefineDefaultConstructorCore(MethodAttributes attributes);
108public MethodBuilder DefineMethod(string name, MethodAttributes attributes)
111public MethodBuilder DefineMethod(string name, MethodAttributes attributes, CallingConventions callingConvention)
114public MethodBuilder DefineMethod(string name, MethodAttributes attributes, CallingConventions callingConvention,
118public MethodBuilder DefineMethod(string name, MethodAttributes attributes, Type? returnType, Type[]? parameterTypes)
121public MethodBuilder DefineMethod(string name, MethodAttributes attributes, CallingConventions callingConvention,
140protected abstract MethodBuilder DefineMethodCore(string name, MethodAttributes attributes, CallingConventions callingConvention,
192public MethodBuilder DefinePInvokeMethod(string name, string dllName, MethodAttributes attributes,
199public MethodBuilder DefinePInvokeMethod(string name, string dllName, string entryName, MethodAttributes attributes,
207public MethodBuilder DefinePInvokeMethod(string name, string dllName, string entryName, MethodAttributes attributes,
224protected abstract MethodBuilder DefinePInvokeMethodCore(string name, string dllName, string entryName, MethodAttributes attributes,
System\Reflection\Emit\DynamicMethod.cs (3)
12public DynamicMethod(string name, MethodAttributes attributes, CallingConventions callingConvention, Type returnType, Type[] parameterTypes, Module m, bool skipVisibility)
18public DynamicMethod(string name, MethodAttributes attributes, CallingConventions callingConvention, Type returnType, Type[] parameterTypes, Type owner, bool skipVisibility)
59public override MethodAttributes Attributes