8 references to IsDelegateType
Microsoft.CodeAnalysis.CSharp.Workspaces (2)
Recommendations\CSharpRecommendationServiceRunner.cs (2)
317return symbols.WhereAsArray(static s => !s.IsDelegateType()); 578? symbols.WhereAsArray(s => !s.IsDelegateType())
Microsoft.CodeAnalysis.Features (3)
Completion\Providers\AbstractRecommendationServiceBasedCompletionProvider.cs (2)
85symbol.IsDelegateType() || 110symbol.IsDelegateType() ||
Shared\Extensions\ISymbolExtensions_2.cs (1)
207if (containingSymbol.ContainingSymbol.IsDelegateType() && containingSymbol is IMethodSymbol methodSymbol)
Microsoft.CodeAnalysis.Workspaces (3)
FindSymbols\FindReferences\Finders\AbstractReferenceFinder.cs (1)
46var parent = symbol.IsDelegateType()
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Extensions\Symbols\ISymbolExtensions.cs (2)
312=> symbol.IsAnonymousType() && !symbol.IsDelegateType(); 315=> symbol.IsAnonymousType() && symbol.IsDelegateType();