12 references to GetMethod
illink (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>
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)
79
return typeImpl.
GetMethod
(name, bindingAttr, binder, callConvention, types, modifiers);
src\libraries\System.Private.CoreLib\src\System\Type.cs (1)
330
public 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)
112
return m_typeBuilder.
GetMethod
(name, bindingAttr, binder, callConvention, types, modifiers);
src\System\Reflection\Emit\RuntimeTypeBuilder.cs (1)
693
return m_bakedRuntimeType.
GetMethod
(name, bindingAttr, binder, callConvention, types, modifiers);
src\System\Reflection\RuntimeModule.cs (1)
341
return 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)
1351
return _globalTypeBuilder.
GetMethod
(name, bindingAttr, binder, callConvention, types, modifiers);
System\Reflection\Emit\TypeBuilderImpl.cs (1)
867
found = _typeParent.
GetMethod
(name, bindingAttr, binder, callConvention, types, modifiers);