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