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)
38
return
_method
.GetParameterTypes();
43
public override MemberTypes MemberType =>
_method
.MemberType;
44
public override string Name =>
_method
.Name;
45
public override Type? DeclaringType =>
_method
.DeclaringType;
46
public override Type? ReflectedType =>
_method
.ReflectedType;
47
public override object[] GetCustomAttributes(bool inherit) { return
_method
.GetCustomAttributes(inherit); }
48
public override object[] GetCustomAttributes(Type attributeType, bool inherit) { return
_method
.GetCustomAttributes(attributeType, inherit); }
49
public override bool IsDefined(Type attributeType, bool inherit) { return
_method
.IsDefined(attributeType, inherit); }
50
public override Module Module =>
_method
.Module;
54
public override ParameterInfo[] GetParameters() =>
_method
.GetParameters();
55
public override MethodImplAttributes GetMethodImplementationFlags() { return
_method
.GetMethodImplementationFlags(); }
57
public override MethodAttributes Attributes =>
_method
.Attributes;
62
public override CallingConventions CallingConvention =>
_method
.CallingConvention;
64
public override MethodInfo GetGenericMethodDefinition() { return
_method
; }
99
public override Type ReturnType =>
_method
.ReturnType;