12 references to GetMethod
illink (1)
ILLink.RoslynAnalyzer (1)
src\tools\illink\src\ILLink.Shared\TrimAnalysis\IntrinsicId.cs (1)
94 /// <item><see cref="System.Type.GetMethod(string, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]?)"/></item>
Microsoft.Build.Tasks.CodeAnalysis.UnitTests (2)
TestUtilities\ErrorLoggerEngine.cs (2)
28_formatErrorMethod = formattingClass.GetMethod("FormatEventMessage", BindingFlags.Static | BindingFlags.NonPublic, null, CallingConventions.Any, 30_formatWarningMethod = formattingClass.GetMethod("FormatEventMessage", BindingFlags.Static | BindingFlags.NonPublic, null, CallingConventions.Any,
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
79return typeImpl.GetMethod(name, bindingAttr, binder, callConvention, types, modifiers);
src\libraries\System.Private.CoreLib\src\System\Type.cs (1)
330public MethodInfo? GetMethod(string name, BindingFlags bindingAttr, Binder? binder, Type[] types, ParameterModifier[]? modifiers) => GetMethod(name, bindingAttr, binder, CallingConventions.Any, types, modifiers);
src\System\Reflection\Emit\RuntimeEnumBuilder.cs (1)
112return m_typeBuilder.GetMethod(name, bindingAttr, binder, callConvention, types, modifiers);
src\System\Reflection\Emit\RuntimeTypeBuilder.cs (1)
693return m_bakedRuntimeType.GetMethod(name, bindingAttr, binder, callConvention, types, modifiers);
src\System\Reflection\RuntimeModule.cs (1)
341return RuntimeType.GetMethod(name, bindingAttr, binder, callConvention, types, modifiers);
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingType.cs (1)
358_typeInfo.GetMethod(name, bindingAttr, binder, callConvention, types, modifiers);
System.Reflection.Emit (2)
System\Reflection\Emit\ModuleBuilderImpl.cs (1)
1351return _globalTypeBuilder.GetMethod(name, bindingAttr, binder, callConvention, types, modifiers);
System\Reflection\Emit\TypeBuilderImpl.cs (1)
867found = _typeParent.GetMethod(name, bindingAttr, binder, callConvention, types, modifiers);