1 override of ProjectMethod
System.Reflection.Context (1)
System\Reflection\Context\CustomReflectionContext.Projector.cs (1)
116public override MethodInfo? ProjectMethod(MethodInfo? value)
15 references to ProjectMethod
System.Reflection.Context (15)
System\Reflection\Context\Projection\ProjectingAssembly.cs (1)
51get { return Projector.ProjectMethod(base.EntryPoint); }
System\Reflection\Context\Projection\ProjectingEventInfo.cs (4)
45return Projector.ProjectMethod(base.GetAddMethod(nonPublic)); 50return Projector.Project(base.GetOtherMethods(nonPublic), Projector.ProjectMethod); 55return Projector.ProjectMethod(base.GetRaiseMethod(nonPublic)); 60return Projector.ProjectMethod(base.GetRemoveMethod(nonPublic));
System\Reflection\Context\Projection\ProjectingMethodInfo.cs (3)
65return Projector.ProjectMethod(base.GetBaseDefinition()); 94return Projector.ProjectMethod(base.GetGenericMethodDefinition()); 110return Projector.ProjectMethod(base.MakeGenericMethod(Projector.Unproject(typeArguments)));
System\Reflection\Context\Projection\ProjectingModule.cs (2)
61return Projector.ProjectMethod(base.GetMethodImpl(name, bindingAttr, binder, callConvention, types, modifiers)); 66return Projector.Project(base.GetMethods(bindingFlags), Projector.ProjectMethod);
System\Reflection\Context\Projection\ProjectingPropertyInfo.cs (3)
46return Projector.Project(base.GetAccessors(nonPublic), Projector.ProjectMethod); 51return Projector.ProjectMethod(base.GetGetMethod(nonPublic)); 61return Projector.ProjectMethod(base.GetSetMethod(nonPublic));
System\Reflection\Context\Projection\ProjectingType.cs (2)
264return _projector.ProjectMethod(base.GetMethodImpl(name, bindingAttr, binder, callConvention, types, modifiers)); 269return _projector.Project(base.GetMethods(bindingAttr), _projector.ProjectMethod);