6 references to DelegateInvokeMethod
Microsoft.CodeAnalysis.CSharp (5)
Binder\Binder_Expressions.cs (1)
9304MethodSymbol invoke = possibleDelegateType.DelegateInvokeMethod();
Binder\Semantics\OverloadResolution\MethodTypeInference.cs (1)
1501var delegateInvokeMethod = target.Type.GetDelegateType()?.DelegateInvokeMethod();
CodeGen\EmitExpression.cs (1)
787var meth = expression.MethodOpt ?? receiver.Type.DelegateInvokeMethod();
FlowAnalysis\NullableWalker.cs (1)
8855argType.DelegateInvokeMethod() is { } argInvokeMethod)
Symbols\TypeSymbolExtensions.cs (1)
511var invokeMethod = type.DelegateInvokeMethod();
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (1)
Symbols\TypeTests.cs (1)
1615var memType = deleType.DelegateInvokeMethod().ReturnType;