1 write to _method
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\MethodBuilderInstantiation.cs (1)
30_method = method;
15 references to _method
System.Private.CoreLib (15)
src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\MethodBuilderInstantiation.cs (15)
38return _method.GetParameterTypes(); 43public override MemberTypes MemberType => _method.MemberType; 44public override string Name => _method.Name; 45public override Type? DeclaringType => _method.DeclaringType; 46public override Type? ReflectedType => _method.ReflectedType; 47public override object[] GetCustomAttributes(bool inherit) { return _method.GetCustomAttributes(inherit); } 48public override object[] GetCustomAttributes(Type attributeType, bool inherit) { return _method.GetCustomAttributes(attributeType, inherit); } 49public override bool IsDefined(Type attributeType, bool inherit) { return _method.IsDefined(attributeType, inherit); } 50public override Module Module => _method.Module; 54public override ParameterInfo[] GetParameters() => _method.GetParameters(); 55public override MethodImplAttributes GetMethodImplementationFlags() { return _method.GetMethodImplementationFlags(); } 57public override MethodAttributes Attributes => _method.Attributes; 62public override CallingConventions CallingConvention => _method.CallingConvention; 64public override MethodInfo GetGenericMethodDefinition() { return _method; } 99public override Type ReturnType => _method.ReturnType;