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