2 implementations of MethodBase
System.Reflection.MetadataLoadContext (2)
System\Reflection\TypeLoading\Constructors\RoConstructor.cs (1)
85
MethodBase IRoMethodBase.
MethodBase
=> this;
System\Reflection\TypeLoading\Methods\RoMethod.cs (1)
129
MethodBase IRoMethodBase.
MethodBase
=> this;
6 references to MethodBase
System.Reflection.MetadataLoadContext (6)
System\Reflection\TypeLoading\General\Helpers.cs (1)
248
sb.Append(roMethodBase.
MethodBase
.Name);
System\Reflection\TypeLoading\MethodBase\Ecma\EcmaMethodBody.cs (1)
85
private EcmaModule GetEcmaModule() => (EcmaModule)(_roMethodBase.
MethodBase
.Module);
System\Reflection\TypeLoading\MethodBase\Ecma\EcmaMethodDecoder.cs (1)
114
return new EcmaMethodBody(owner, ((EcmaModule)(owner.
MethodBase
.Module)).PEReader.GetMethodBody(rva));
System\Reflection\TypeLoading\Parameters\Ecma\EcmaFatMethodParameter.cs (2)
28
Debug.Assert(roMethodBase.
MethodBase
.Module is EcmaModule);
29
_module = (EcmaModule)(roMethodBase.
MethodBase
.Module);
System\Reflection\TypeLoading\Parameters\RoMethodParameter.cs (1)
17
: base(roMethodBase.
MethodBase
, position)