8 references to DelegateInvokeMethod
Microsoft.CodeAnalysis.CSharp (7)
Binder\Binder_Expressions.cs (1)
11296
MethodSymbol invoke = possibleDelegateType.
DelegateInvokeMethod
();
Binder\Semantics\OverloadResolution\MethodTypeInference.cs (1)
1622
var delegateInvokeMethod = target.Type.GetDelegateType()?.
DelegateInvokeMethod
();
CodeGen\EmitExpression.cs (1)
801
var meth = expression.MethodOpt ?? receiver.Type.
DelegateInvokeMethod
();
FlowAnalysis\NullableWalker.cs (1)
10258
argType.
DelegateInvokeMethod
() is { } argInvokeMethod)
Lowering\LocalRewriter\LocalRewriter.cs (1)
333
delegateType.
DelegateInvokeMethod
() is MethodSymbol delegateInvoke &&
Lowering\LocalRewriter\LocalRewriter_Conversion.cs (1)
743
delegateType.
DelegateInvokeMethod
() is MethodSymbol delegateInvoke &&
Symbols\TypeSymbolExtensions.cs (1)
576
var invokeMethod = type.
DelegateInvokeMethod
();
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (1)
Symbols\TypeTests.cs (1)
1618
var memType = deleType.
DelegateInvokeMethod
().ReturnType;